blob: ad8557ed5a7f35d1cbdc79204b09cc4a26e87118 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#ifndef _XSASL_CYRUS_H_INCLUDED_
#define _XSASL_CYRUS_H_INCLUDED_
/*++
/* NAME
/* xsasl_cyrus 3h
/* SUMMARY
/* Cyrus SASL plug-in
/* SYNOPSIS
/* #include <xsasl_cyrus.h>
/* DESCRIPTION
/* .nf
/*
* XSASL library.
*/
#include <xsasl.h>
#if defined(USE_SASL_AUTH) && defined(USE_CYRUS_SASL)
/*
* SASL protocol interface
*/
#define XSASL_TYPE_CYRUS "cyrus"
extern XSASL_SERVER_IMPL *xsasl_cyrus_server_init(const char *, const char *);
extern XSASL_CLIENT_IMPL *xsasl_cyrus_client_init(const char *, const char *);
/*
* Internal definitions for client and server module.
*/
typedef int (*XSASL_CYRUS_CB) (void);
#endif
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*--*/
#endif
|