Fixing a compilation issue, wherein two global vars, conf and chan, were defined...
[revinetd.git] / revinetd.h
blob1a4e0473b654e2703dd701ea72176901d0e191c5
1 /*
2 * revinetd.h
4 * This file is a part of the revinetd project
6 * Revinetd is copyright (c) 2003-2008 by Steven M. Gill
7 * and distributed under the GPL.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
22 * USA.
24 * */
26 /* $Id: revinetd.h,v 1.16 2008/08/28 03:24:59 necrotaur Exp $ */
28 #ifndef __REVINETD_H__
29 #define __REVINETD_H__
31 /* Define truth. Too bad we can only do that on a computer. */
32 #ifndef FALSE
33 #define FALSE 0
34 #endif
35 #ifndef TRUE
36 #define TRUE !FALSE
37 #endif
39 #include "includes.h"
41 /* Values for server flag */
42 #define FLAG_NONE 0
43 #define FLAG_RELAY -1
44 #define FLAG_SERVER 1
45 /* Values for verbosity */
46 #define VB_NORMAL 0
47 #define VB_QUIET -1
48 #define VB_VERBOSE 1
49 #define VB_DEBUG 2
51 /* Structures defs for configuration. */
52 typedef struct _OpenSockets {
53 int sock;
54 struct _OpenSockets *next;
55 struct _OpenSockets *prev;
56 } OpenSockets;
58 typedef struct _Conf {
59 int server_flag;
60 int daemonize;
61 int port;
62 int port2;
63 int verbosity;
64 char *host;
65 char *host2;
66 long int keepalive;
67 char *access_log_filepath;
68 FILE *access_log_file;
69 OpenSockets *open_sock;
70 } Conf;
72 /* Function prototypes. */
73 void init_conf(void);
74 void clean_exit(int);
75 void usage(void);
76 unsigned short parse_host_str(char *);
78 #endif