debian experimental exim-daemon-heavy config
[exim.git] / src / src / routers / accept.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
8 /* Private structure for the private options (there aren't any). */
9
10 typedef struct {
11 uschar *dummy;
12 } accept_router_options_block;
13
14 /* Data for reading the private options. */
15
16 extern optionlist accept_router_options[];
17 extern int accept_router_options_count;
18
19 /* Block containing default values. */
20
21 extern accept_router_options_block accept_router_option_defaults;
22
23 /* The main and initialization entry points for the router */
24
25 extern int accept_router_entry(router_instance *, address_item *,
26 struct passwd *, int, address_item **, address_item **,
27 address_item **, address_item **);
28
29 extern void accept_router_init(router_instance *);
30
31 /* End of routers/accept.h */