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. */
7 /* SPDX-License-Identifier: GPL-2.0-or-later */
9 /* Header for the manualroute router */
11 /* Structure for the private options. */
17 uschar *host_all_ignored;
18 uschar *host_find_failed;
21 } manualroute_router_options_block;
23 /* Data for reading the private options. */
25 extern optionlist manualroute_router_options[];
26 extern int manualroute_router_options_count;
28 /* Block containing default values. */
30 extern manualroute_router_options_block manualroute_router_option_defaults;
32 /* The main and initialization entry points for the router */
34 extern int manualroute_router_entry(router_instance *, address_item *,
35 struct passwd *, int, address_item **, address_item **,
36 address_item **, address_item **);
38 extern void manualroute_router_init(router_instance *);
40 /* End of routers/manualroute.h */