1*4271Srie# 2*4271Srie# CDDL HEADER START 3*4271Srie# 4*4271Srie# The contents of this file are subject to the terms of the 5*4271Srie# Common Development and Distribution License (the "License"). 6*4271Srie# You may not use this file except in compliance with the License. 7*4271Srie# 8*4271Srie# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*4271Srie# or http://www.opensolaris.org/os/licensing. 10*4271Srie# See the License for the specific language governing permissions 11*4271Srie# and limitations under the License. 12*4271Srie# 13*4271Srie# When distributing Covered Code, include this CDDL HEADER in each 14*4271Srie# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*4271Srie# If applicable, add the following below this CDDL HEADER, with the 16*4271Srie# fields enclosed by brackets "[]" replaced with your own identifying 17*4271Srie# information: Portions Copyright [yyyy] [name of copyright owner] 18*4271Srie# 19*4271Srie# CDDL HEADER END 20*4271Srie# 21*4271Srie 22*4271Srie# 23*4271Srie# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 24*4271Srie# Use is subject to license terms. 25*4271Srie# 26*4271Srie# ident "%Z%%M% %I% %E% SMI" 27*4271Srie# 28*4271Srie 29*4271Srie# tcpdchk interposes on numerous routines, and must export other data 30*4271Srie# structures to satisfy external dependency requirements. 31*4271Srie{ 32*4271Srie global: 33*4271Srie clean_exit = INTERPOSE; 34*4271Srie closelog = INTERPOSE; 35*4271Srie hosts_access_verbose = INTERPOSE; 36*4271Srie hosts_allow_table = INTERPOSE; 37*4271Srie hosts_deny_table = INTERPOSE; 38*4271Srie openlog = INTERPOSE; 39*4271Srie resident = INTERPOSE; 40*4271Srie rfc931 = INTERPOSE; 41*4271Srie rfc931_timeout = INTERPOSE; 42*4271Srie shell_cmd = INTERPOSE; 43*4271Srie syslog = INTERPOSE; 44*4271Srie vsyslog = INTERPOSE; 45*4271Srie 46*4271Srie allow_severity; # required by libwrap 47*4271Srie deny_severity; # required by libwrap 48*4271Srie}; 49