diff options
Diffstat (limited to 'usr/src/cmd/tcpd')
-rw-r--r-- | usr/src/cmd/tcpd/mapfile-intf-tcpdchk | 31 | ||||
-rw-r--r-- | usr/src/cmd/tcpd/mapfile-intf-tcpdmatch | 23 | ||||
-rw-r--r-- | usr/src/cmd/tcpd/mapfile-intf-tryfrom | 16 |
3 files changed, 37 insertions, 33 deletions
diff --git a/usr/src/cmd/tcpd/mapfile-intf-tcpdchk b/usr/src/cmd/tcpd/mapfile-intf-tcpdchk index 395d2a06af..dbccafc10f 100644 --- a/usr/src/cmd/tcpd/mapfile-intf-tcpdchk +++ b/usr/src/cmd/tcpd/mapfile-intf-tcpdchk @@ -20,8 +20,7 @@ # # -# Copyright 2009 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. +# Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. # # @@ -38,22 +37,24 @@ # MAPFILE HEADER END # +$mapfile_version 2 + # tcpdchk interposes on numerous routines, and must export other data # structures to satisfy external dependency requirements. -{ +SYMBOL_SCOPE { global: - clean_exit = INTERPOSE; - closelog = INTERPOSE; - hosts_access_verbose = INTERPOSE; - hosts_allow_table = INTERPOSE; - hosts_deny_table = INTERPOSE; - openlog = INTERPOSE; - resident = INTERPOSE; - rfc931 = INTERPOSE; - rfc931_timeout = INTERPOSE; - shell_cmd = INTERPOSE; - syslog = INTERPOSE; - vsyslog = INTERPOSE; + clean_exit { FLAGS = INTERPOSE }; + closelog { FLAGS = INTERPOSE }; + hosts_access_verbose { FLAGS = INTERPOSE }; + hosts_allow_table { FLAGS = INTERPOSE }; + hosts_deny_table { FLAGS = INTERPOSE }; + openlog { FLAGS = INTERPOSE }; + resident { FLAGS = INTERPOSE }; + rfc931 { FLAGS = INTERPOSE }; + rfc931_timeout { FLAGS = INTERPOSE }; + shell_cmd { FLAGS = INTERPOSE }; + syslog { FLAGS = INTERPOSE }; + vsyslog { FLAGS = INTERPOSE }; allow_severity; # required by libwrap deny_severity; # required by libwrap diff --git a/usr/src/cmd/tcpd/mapfile-intf-tcpdmatch b/usr/src/cmd/tcpd/mapfile-intf-tcpdmatch index f784cae9e4..c3397493e3 100644 --- a/usr/src/cmd/tcpd/mapfile-intf-tcpdmatch +++ b/usr/src/cmd/tcpd/mapfile-intf-tcpdmatch @@ -20,8 +20,7 @@ # # -# Copyright 2009 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. +# Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. # # @@ -38,18 +37,20 @@ # MAPFILE HEADER END # +$mapfile_version 2 + # tcpdmatch interposes on numerous routines, and must export other data # structures to satisfy external dependency requirements. -{ +SYMBOL_SCOPE { global: - clean_exit = INTERPOSE; - closelog = INTERPOSE; - openlog = INTERPOSE; - rfc931 = INTERPOSE; - rfc931_timeout = INTERPOSE; - shell_cmd = INTERPOSE; - syslog = INTERPOSE; - vsyslog = INTERPOSE; + clean_exit { FLAGS = INTERPOSE }; + closelog { FLAGS = INTERPOSE }; + openlog { FLAGS = INTERPOSE }; + rfc931 { FLAGS = INTERPOSE }; + rfc931_timeout { FLAGS = INTERPOSE }; + shell_cmd { FLAGS = INTERPOSE }; + syslog { FLAGS = INTERPOSE }; + vsyslog { FLAGS = INTERPOSE }; allow_severity; # required by libwrap deny_severity; # required by libwrap diff --git a/usr/src/cmd/tcpd/mapfile-intf-tryfrom b/usr/src/cmd/tcpd/mapfile-intf-tryfrom index a4f78265fa..2035dffedd 100644 --- a/usr/src/cmd/tcpd/mapfile-intf-tryfrom +++ b/usr/src/cmd/tcpd/mapfile-intf-tryfrom @@ -20,8 +20,7 @@ # # -# Copyright 2009 Sun Microsystems, Inc. All rights reserved. -# Use is subject to license terms. +# Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. # # try-from interposes on numerous routines, and must export other data # structures to satisfy external dependency requirements. @@ -39,12 +38,15 @@ # # MAPFILE HEADER END # -{ + +$mapfile_version 2 + +SYMBOL_SCOPE { global: - closelog = INTERPOSE; - openlog = INTERPOSE; - syslog = INTERPOSE; - vsyslog = INTERPOSE; + closelog { FLAGS = INTERPOSE }; + openlog { FLAGS = INTERPOSE }; + syslog { FLAGS = INTERPOSE }; + vsyslog { FLAGS = INTERPOSE }; allow_severity; # required by libwrap deny_severity; # required by libwrap |