1# 2#ident "%Z%%M% %I% %E% SMI" 3# 4# Copyright 2005 Sun Microsystems, Inc. All rights reserved. 5# Use is subject to license terms. 6# 7# CDDL HEADER START 8# 9# The contents of this file are subject to the terms of the 10# Common Development and Distribution License, Version 1.0 only 11# (the "License"). You may not use this file except in compliance 12# with the License. 13# 14# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15# or http://www.opensolaris.org/os/licensing. 16# See the License for the specific language governing permissions 17# and limitations under the License. 18# 19# When distributing Covered Code, include this CDDL HEADER in each 20# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 21# If applicable, add the following below this CDDL HEADER, with the 22# fields enclosed by brackets "[]" replaced with your own identifying 23# information: Portions Copyright [yyyy] [name of copyright owner] 24# 25# CDDL HEADER END 26# 27# Generic interface definition for usr/src/lib/rpcsec_gss. 28# 29# For information regarding the establishment of versioned definitions see: 30# The Linker and Libraries Manual (version 2.5 or greater) 31# This is part of the Developers Guide in the Answerbook. Specifically refer 32# to Chapter 2 under section "Defining Additional Symbols" through section 33# "Reducing Symbol Scope", and Chapter 5 "Versioning". 34# 35# For specific OSNET rules for the modification (evolution) of these version 36# definitions see: 37# Policy for Shared Library Version Names and Interface Definitions 38 39 40# Note: Even though the SUNW_1.2 version now contains no symbols 41# beyond what was present at Solaris 2.6, the SUNW_1.2 version MUST be 42# present. This is because applications built on 2.6 Beta 43# (when it did contain symbols explicitly) may depend on it. 44# 45SUNW_1.2 { # This empty version MUST BE preserved for 2.6Beta apps 46 global: 47 SUNW_1.2; 48} SUNW_1.1; 49 50SUNW_1.1 { 51 global: 52 SUNW_1.1; 53}; 54 55SUNWprivate_1.1 { 56 global: 57 __rpc_gss_seccreate; 58 __rpc_gss_set_defaults; 59 __rpc_gss_wrap; 60 __rpc_gss_unwrap; 61 __rpc_gss_max_data_length; 62 __rpc_gss_get_error; 63 __rpc_gss_mech_to_oid; 64 __rpc_gss_qop_to_num; 65 __rpc_gss_get_principal_name; 66 __rpc_gss_get_mechanisms; 67 __rpc_gss_get_mech_info; 68 __rpc_gss_get_versions; 69 __rpc_gss_is_installed; 70 __rpc_gss_set_callback; 71 __rpc_gss_getcred; 72 __svcrpcsec_gss; 73 __rpc_gss_set_svc_name; 74 __rpc_gss_svc_max_data_length; 75 76 local: 77 *; 78}; 79