abe0f3d4e4c7154a4e691d2165372dbb7812313f
[exim.git] / src / src / auths / plaintext.h
1 /* $Cambridge: exim/src/src/auths/plaintext.h,v 1.2 2005/01/04 10:00:43 ph10 Exp $ */
2
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
6
7 /* Copyright (c) University of Cambridge 1995 - 2005 */
8 /* See the file NOTICE for conditions of use and distribution. */
9
10 /* Private structure for the private options. */
11
12 typedef struct {
13 uschar *server_condition;
14 uschar *server_prompts;
15 uschar *client_send;
16 } auth_plaintext_options_block;
17
18 /* Data for reading the private options. */
19
20 extern optionlist auth_plaintext_options[];
21 extern int auth_plaintext_options_count;
22
23 /* Block containing default values. */
24
25 extern auth_plaintext_options_block auth_plaintext_option_defaults;
26
27 /* The entry points for the mechanism */
28
29 extern void auth_plaintext_init(auth_instance *);
30 extern int auth_plaintext_server(auth_instance *, uschar *);
31 extern int auth_plaintext_client(auth_instance *, smtp_inblock *,
32 smtp_outblock *, int, uschar *, int);
33
34 /* End of plaintext.h */