Documentation for randint. Better randomness defaults. Fixes: #722
[exim.git] / src / src / routers / ipliteral.h
CommitLineData
184e8823 1/* $Cambridge: exim/src/src/routers/ipliteral.h,v 1.5 2007/01/08 10:50:20 ph10 Exp $ */
0756eb3c
PH
2
3/*************************************************
4* Exim - an Internet mail transport agent *
5*************************************************/
6
184e8823 7/* Copyright (c) University of Cambridge 1995 - 2007 */
0756eb3c
PH
8/* See the file NOTICE for conditions of use and distribution. */
9
10
11/* Private structure for the private options. Some compilers do not like empty
12structures - the Standard, alas, says "undefined behaviour" for an empty
13structure - so we have to put in a dummy value. */
14
15typedef struct {
16 int dummy;
17} ipliteral_router_options_block;
18
19/* Data for reading the private options. */
20
21extern optionlist ipliteral_router_options[];
22extern int ipliteral_router_options_count;
23
24/* Block containing default values. */
25
26extern ipliteral_router_options_block ipliteral_router_option_defaults;
27
28/* The main and initialization entry points for the router */
29
30extern int ipliteral_router_entry(router_instance *, address_item *,
fd6de02e 31 struct passwd *, int, address_item **, address_item **,
0756eb3c
PH
32 address_item **, address_item **);
33
34extern void ipliteral_router_init(router_instance *);
35
36/* End of routers/ipliteral.h */