1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2012 */
6 /* See the file NOTICE for conditions of use and distribution. */
8 /* Copyright (c) Twitter Inc 2012 */
10 /* Interface to Heimdal library for GSSAPI authentication. */
12 /* Authenticator-specific options. */
15 uschar
*server_hostname
;
16 uschar
*server_keytab
;
18 uschar
*server_service
;
19 } auth_heimdal_gssapi_options_block
;
21 /* Data for reading the authenticator-specific options. */
23 extern optionlist auth_heimdal_gssapi_options
[];
24 extern int auth_heimdal_gssapi_options_count
;
26 /* Defaults for the authenticator-specific options. */
28 extern auth_heimdal_gssapi_options_block auth_heimdal_gssapi_option_defaults
;
30 /* The entry points for the mechanism */
32 extern void auth_heimdal_gssapi_init(auth_instance
*);
33 extern int auth_heimdal_gssapi_server(auth_instance
*, uschar
*);
34 extern int auth_heimdal_gssapi_client(auth_instance
*, smtp_inblock
*,
35 smtp_outblock
*, int, uschar
*, int);
36 extern void auth_heimdal_gssapi_version_report(FILE *f
);
38 /* End of heimdal_gssapi.h */