1 /*************************************************
2 * Exim - an Internet mail transport agent *
3 *************************************************/
5 /* Copyright (c) University of Cambridge 1995 - 2009 */
6 /* See the file NOTICE for conditions of use and distribution. */
8 /* Private structure for the private options (there aren't any). */
12 } accept_router_options_block;
14 /* Data for reading the private options. */
16 extern optionlist accept_router_options[];
17 extern int accept_router_options_count;
19 /* Block containing default values. */
21 extern accept_router_options_block accept_router_option_defaults;
23 /* The main and initialization entry points for the router */
25 extern int accept_router_entry(router_instance *, address_item *,
26 struct passwd *, int, address_item **, address_item **,
27 address_item **, address_item **);
29 extern void accept_router_init(router_instance *);
31 /* End of routers/accept.h */