xref: /illumos-gate/usr/src/cmd/sendmail/src/sfsasl.h (revision 7c478bd9)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * Copyright (c) 1999, 2000 Sendmail, Inc. and its suppliers.
3*7c478bd9Sstevel@tonic-gate  *	All rights reserved.
4*7c478bd9Sstevel@tonic-gate  *
5*7c478bd9Sstevel@tonic-gate  * By using this file, you agree to the terms and conditions set
6*7c478bd9Sstevel@tonic-gate  * forth in the LICENSE file which can be found at the top level of
7*7c478bd9Sstevel@tonic-gate  * the sendmail distribution.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  *	$Id: sfsasl.h,v 8.17 2000/09/19 21:30:49 ca Exp $"
10*7c478bd9Sstevel@tonic-gate  */
11*7c478bd9Sstevel@tonic-gate 
12*7c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
13*7c478bd9Sstevel@tonic-gate 
14*7c478bd9Sstevel@tonic-gate #ifndef SFSASL_H
15*7c478bd9Sstevel@tonic-gate # define SFSASL_H
16*7c478bd9Sstevel@tonic-gate 
17*7c478bd9Sstevel@tonic-gate #if SASL
18*7c478bd9Sstevel@tonic-gate extern int	sfdcsasl __P((SM_FILE_T **, SM_FILE_T **, sasl_conn_t *));
19*7c478bd9Sstevel@tonic-gate #endif /* SASL */
20*7c478bd9Sstevel@tonic-gate 
21*7c478bd9Sstevel@tonic-gate # if STARTTLS
22*7c478bd9Sstevel@tonic-gate extern int	sfdctls __P((SM_FILE_T **, SM_FILE_T **, SSL *));
23*7c478bd9Sstevel@tonic-gate # endif /* STARTTLS */
24*7c478bd9Sstevel@tonic-gate 
25*7c478bd9Sstevel@tonic-gate #endif /* ! SFSASL_H */
26