summaryrefslogtreecommitdiffstats
path: root/src/auths/heimdal_gssapi.h
blob: 49775aff99e8a724b30cb3cbaf89ff55ca9fa2a2 (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
/*************************************************
*     Exim - an Internet mail transport agent    *
*************************************************/

/* Copyright (c) The Exim Maintainers 2022 */
/* Copyright (c) University of Cambridge 1995 - 2012 */
/* See the file NOTICE for conditions of use and distribution. */

/* Copyright (c) Twitter Inc 2012
   Author: Phil Pennock <pdp@exim.org> */
/* Copyright (c) Phil Pennock 2012 */

/* Interface to Heimdal library for GSSAPI authentication. */

/* Authenticator-specific options. */

typedef struct {
  uschar *server_hostname;
  uschar *server_keytab;
  uschar *server_service;
} auth_heimdal_gssapi_options_block;

/* Data for reading the authenticator-specific options. */

extern optionlist auth_heimdal_gssapi_options[];
extern int auth_heimdal_gssapi_options_count;

/* Defaults for the authenticator-specific options. */

extern auth_heimdal_gssapi_options_block auth_heimdal_gssapi_option_defaults;

/* The entry points for the mechanism */

extern void auth_heimdal_gssapi_init(auth_instance *);
extern int auth_heimdal_gssapi_server(auth_instance *, uschar *);
extern int auth_heimdal_gssapi_client(auth_instance *, void *, int, uschar *, int);
extern void auth_heimdal_gssapi_version_report(BOOL);

/* End of heimdal_gssapi.h */