debian experimental exim-daemon-heavy config
[exim.git] / src / src / routers / accept.h
CommitLineData
0756eb3c
PH
1/*************************************************
2* Exim - an Internet mail transport agent *
3*************************************************/
4
0a49a7a4 5/* Copyright (c) University of Cambridge 1995 - 2009 */
0756eb3c
PH
6/* See the file NOTICE for conditions of use and distribution. */
7
8/* Private structure for the private options (there aren't any). */
9
10typedef struct {
11 uschar *dummy;
12} accept_router_options_block;
13
14/* Data for reading the private options. */
15
16extern optionlist accept_router_options[];
17extern int accept_router_options_count;
18
19/* Block containing default values. */
20
21extern accept_router_options_block accept_router_option_defaults;
22
23/* The main and initialization entry points for the router */
24
25extern int accept_router_entry(router_instance *, address_item *,
fd6de02e 26 struct passwd *, int, address_item **, address_item **,
0756eb3c
PH
27 address_item **, address_item **);
28
29extern void accept_router_init(router_instance *);
30
31/* End of routers/accept.h */