Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / src / src / auths / plaintext.h
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
5 /* Copyright (c) University of Cambridge 1995 - 2009 */
6 /* See the file NOTICE for conditions of use and distribution. */
7 /* SPDX-License-Identifier: GPL-2.0-or-later */
8
9 /* Private structure for the private options. */
10
11 typedef struct {
12   uschar *server_prompts;
13   uschar *client_send;
14   BOOL    client_ignore_invalid_base64;
15 } auth_plaintext_options_block;
16
17 /* Data for reading the private options. */
18
19 extern optionlist auth_plaintext_options[];
20 extern int auth_plaintext_options_count;
21
22 /* Block containing default values. */
23
24 extern auth_plaintext_options_block auth_plaintext_option_defaults;
25
26 /* The entry points for the mechanism */
27
28 extern void auth_plaintext_init(auth_instance *);
29 extern int auth_plaintext_server(auth_instance *, uschar *);
30 extern int auth_plaintext_client(auth_instance *, void *, int, uschar *, int);
31
32 /* End of plaintext.h */