1*0Sstevel@tonic-gate /* 2*0Sstevel@tonic-gate * Copyright 2003 Sun Microsystems, Inc. All rights reserved. 3*0Sstevel@tonic-gate * Use is subject to license terms. 4*0Sstevel@tonic-gate */ 5*0Sstevel@tonic-gate 6*0Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 7*0Sstevel@tonic-gate 8*0Sstevel@tonic-gate #ifndef _LDAPTOOL_SASL_H 9*0Sstevel@tonic-gate #define _LDAPTOOL_SASL_H 10*0Sstevel@tonic-gate 11*0Sstevel@tonic-gate /* 12*0Sstevel@tonic-gate * Include file for ldaptool routines for SASL 13*0Sstevel@tonic-gate */ 14*0Sstevel@tonic-gate 15*0Sstevel@tonic-gate void *ldaptool_set_sasl_defaults ( LDAP *ld, char *mech, char *authid, char *username, char *passwd, char *realm ); 16*0Sstevel@tonic-gate int ldaptool_sasl_interact ( LDAP *ld, unsigned flags, void *defaults, void *p ); 17*0Sstevel@tonic-gate #endif /* _LDAPTOOL_SASL_H */ 18