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