1 /* $Cambridge: exim/src/src/routers/ipliteral.h,v 1.5 2007/01/08 10:50:20 ph10 Exp $ */
3 /*************************************************
4 * Exim - an Internet mail transport agent *
5 *************************************************/
7 /* Copyright (c) University of Cambridge 1995 - 2007 */
8 /* See the file NOTICE for conditions of use and distribution. */
11 /* Private structure for the private options. Some compilers do not like empty
12 structures - the Standard, alas, says "undefined behaviour" for an empty
13 structure - so we have to put in a dummy value. */
17 } ipliteral_router_options_block;
19 /* Data for reading the private options. */
21 extern optionlist ipliteral_router_options[];
22 extern int ipliteral_router_options_count;
24 /* Block containing default values. */
26 extern ipliteral_router_options_block ipliteral_router_option_defaults;
28 /* The main and initialization entry points for the router */
30 extern int ipliteral_router_entry(router_instance *, address_item *,
31 struct passwd *, int, address_item **, address_item **,
32 address_item **, address_item **);
34 extern void ipliteral_router_init(router_instance *);
36 /* End of routers/ipliteral.h */