Compiler masochism compliance.
[exim.git] / src / src / transports / lmtp.h
CommitLineData
0a49a7a4 1/* $Cambridge: exim/src/src/transports/lmtp.h,v 1.6 2009/11/16 19:50:39 nm4 Exp $ */
0756eb3c
PH
2
3/*************************************************
4* Exim - an Internet mail transport agent *
5*************************************************/
6
0a49a7a4 7/* Copyright (c) University of Cambridge 1995 - 2009 */
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 *cmd;
14 uschar *skt;
15 int timeout;
16 int options;
f1513293 17 BOOL ignore_quota;
0756eb3c
PH
18} lmtp_transport_options_block;
19
20/* Data for reading the private options. */
21
22extern optionlist lmtp_transport_options[];
23extern int lmtp_transport_options_count;
24
25/* Block containing default values. */
26
27extern lmtp_transport_options_block lmtp_transport_option_defaults;
28
29/* The main and init entry points for the transport */
30
31extern BOOL lmtp_transport_entry(transport_instance *, address_item *);
32extern void lmtp_transport_init(transport_instance *);
33
34/* End of transports/lmtp.h */