1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) Jeremy Harris 2015 */
6 /* See the file NOTICE for conditions of use and distribution. */
7 /* SPDX-License-Identifier: GPL-2.0-or-later */
9 /* Private structure for the private options. */
12 uschar * server_param1;
13 uschar * server_param2;
14 uschar * server_param3;
15 } auth_tls_options_block;
17 /* Data for reading the private options. */
19 extern optionlist auth_tls_options[];
20 extern int auth_tls_options_count;
22 /* Block containing default values. */
24 extern auth_tls_options_block auth_tls_option_defaults;
26 /* The entry points for the mechanism */
28 extern void auth_tls_init(auth_instance *);
29 extern int auth_tls_server(auth_instance *, uschar *);