1 /* $Cambridge: exim/src/src/routers/accept.h,v 1.6 2009/11/16 19:50:38 nm4 Exp $ */
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
7 /* Copyright (c) University of Cambridge 1995 - 2009 */
8 /* See the file NOTICE for conditions of use and distribution. */
10 /* Private structure for the private options (there aren't any). */
14 } accept_router_options_block;
16 /* Data for reading the private options. */
18 extern optionlist accept_router_options[];
19 extern int accept_router_options_count;
21 /* Block containing default values. */
23 extern accept_router_options_block accept_router_option_defaults;
25 /* The main and initialization entry points for the router */
27 extern int accept_router_entry(router_instance *, address_item *,
28 struct passwd *, int, address_item **, address_item **,
29 address_item **, address_item **);
31 extern void accept_router_init(router_instance *);
33 /* End of routers/accept.h */