Tidy up "make" output along the lines of a 2.6 kernel make (just a short
[exim.git] / src / src / auths / cram_md5.h
CommitLineData
c988f1f4 1/* $Cambridge: exim/src/src/auths/cram_md5.h,v 1.2 2005/01/04 10:00:43 ph10 Exp $ */
0756eb3c
PH
2
3/*************************************************
4* Exim - an Internet mail transport agent *
5*************************************************/
6
c988f1f4 7/* Copyright (c) University of Cambridge 1995 - 2005 */
0756eb3c
PH
8/* See the file NOTICE for conditions of use and distribution. */
9
10/* Private structure for the private options. */
11
12typedef struct {
13 uschar *server_secret;
14 uschar *client_secret;
15 uschar *client_name;
16} auth_cram_md5_options_block;
17
18/* Data for reading the private options. */
19
20extern optionlist auth_cram_md5_options[];
21extern int auth_cram_md5_options_count;
22
23/* Block containing default values. */
24
25extern auth_cram_md5_options_block auth_cram_md5_option_defaults;
26
27/* The entry points for the mechanism */
28
29extern void auth_cram_md5_init(auth_instance *);
30extern int auth_cram_md5_server(auth_instance *, uschar *);
31extern int auth_cram_md5_client(auth_instance *, smtp_inblock *,
32 smtp_outblock *, int, uschar *, int);
33
34/* End of cram_md5.h */