1 /* $Cambridge: exim/src/src/routers/manualroute.h,v 1.6 2007/03/13 15:32:48 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. */
10 /* Header for the manualroute router */
12 /* Structure for the private options. */
18 uschar *host_all_ignored;
19 uschar *host_find_failed;
22 } manualroute_router_options_block;
24 /* Data for reading the private options. */
26 extern optionlist manualroute_router_options[];
27 extern int manualroute_router_options_count;
29 /* Block containing default values. */
31 extern manualroute_router_options_block manualroute_router_option_defaults;
33 /* The main and initialization entry points for the router */
35 extern int manualroute_router_entry(router_instance *, address_item *,
36 struct passwd *, int, address_item **, address_item **,
37 address_item **, address_item **);
39 extern void manualroute_router_init(router_instance *);
41 /* End of routers/manualroute.h */