SPDX: license tags (mostly by guesswork)
[exim.git] / src / src / routers / accept.h
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
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-only */
8
9 /* Private structure for the private options (there aren't any). */
10
11 typedef struct {
12   uschar *dummy;
13 } accept_router_options_block;
14
15 /* Data for reading the private options. */
16
17 extern optionlist accept_router_options[];
18 extern int accept_router_options_count;
19
20 /* Block containing default values. */
21
22 extern accept_router_options_block accept_router_option_defaults;
23
24 /* The main and initialization entry points for the router */
25
26 extern int accept_router_entry(router_instance *, address_item *,
27   struct passwd *, int, address_item **, address_item **,
28   address_item **, address_item **);
29
30 extern void accept_router_init(router_instance *);
31
32 /* End of routers/accept.h */