xref: /netbsd-src/external/ibm-public/postfix/dist/src/xsasl/xsasl_saslc.h (revision 18b1a8268b6e6bc9862ac67a222602b4355dd773)
1 /*	$NetBSD: xsasl_saslc.h,v 1.1 2011/02/12 19:07:09 christos Exp $	*/
2 
3 #ifndef _XSASL_SASLC_H_INCLUDED_
4 #define _XSASL_SASLC_H_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*	xsasl_saslc 3h
9 /* SUMMARY
10 /*	Saslc SASL plug-in
11 /* SYNOPSIS
12 /*	#include <xsasl_saslc.h>
13 /* DESCRIPTION
14 /* .nf
15 
16  /*
17   * XSASL library.
18   */
19 #include "xsasl.h"
20 
21 #if defined(USE_SASL_AUTH) && defined(USE_SASLC_SASL)
22 
23  /*
24   * SASL protocol interface
25   */
26 #define XSASL_TYPE_SASLC "saslc"
27 
28 extern XSASL_CLIENT_IMPL *xsasl_saslc_client_init(const char *, const char *);
29 
30 #endif
31 
32 /* LICENSE
33 /* .ad
34 /* .fi
35 /*	The Secure Mailer license must be distributed with this software.
36 /* AUTHOR(S)
37 /*	Wietse Venema
38 /*	IBM T.J. Watson Research
39 /*	P.O. Box 704
40 /*	Yorktown Heights, NY 10598, USA
41 /*--*/
42 
43 #endif /* _XSASL_SASLC_H_INCLUDED_ */
44