f452b1a4372ad118da929ba5feb89459cda8d33c
[exim.git] / src / src / routers / accept.h
1 /* $Cambridge: exim/src/src/routers/accept.h,v 1.5 2007/01/08 10:50:20 ph10 Exp $ */
2
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
6
7 /* Copyright (c) University of Cambridge 1995 - 2007 */
8 /* See the file NOTICE for conditions of use and distribution. */
9
10 /* Private structure for the private options (there aren't any). */
11
12 typedef struct {
13 uschar *dummy;
14 } accept_router_options_block;
15
16 /* Data for reading the private options. */
17
18 extern optionlist accept_router_options[];
19 extern int accept_router_options_count;
20
21 /* Block containing default values. */
22
23 extern accept_router_options_block accept_router_option_defaults;
24
25 /* The main and initialization entry points for the router */
26
27 extern int accept_router_entry(router_instance *, address_item *,
28 struct passwd *, int, address_item **, address_item **,
29 address_item **, address_item **);
30
31 extern void accept_router_init(router_instance *);
32
33 /* End of routers/accept.h */