summaryrefslogtreecommitdiffstats
path: root/ulogd/conffile.h
blob: 773c93254d8385e2f42e16221afae2a4f22516bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* config file parser functions
 * (C) 2000 by Harald Welte <laforge@gnumonks.org>
 *
 * $Id: conffile.h,v 1.1 2000/09/09 08:36:05 laforge Exp $
 * 
 * This code is distributed under the terms of GNU GPL */

#ifndef _CONFFILE_H
#define _CONFFILE_H

#include <sys/types.h>

/* errors returned by config functions */
enum {
	ERRNONE = 0,
	ERROPEN,	/* unable to open config file */
	ERROOM,		/* out of memory */
	ERRMULT,	/* non-multiple option occured more  than once */
	ERRMAND,	/* mandatory option not found */
	ERRUNKN,	/* unknown key */
};

/* maximum line lenght of config file entries */
#define LINE_LEN 		255

/* maximum lenght of config key name */
#define CONFIG_KEY_LEN		30
#define CONFIG_VAL_STRING_LEN	225


/* valid config types */
#define CONFIG_TYPE_INT		0x0001
#define CONFIG_TYPE_STRING	0x0002
#define CONFIG_TYPE_CALLBACK	0x0003

/* valid config options */
#define CONFIG_OPT_MANDATORY	0x0001
#define CONFIG_OPT_MULTI	0x0002

typedef struct config_entry {
	struct config_entry *next;
	char key[CONFIG_KEY_LEN];
	u_int8_t type;
	u_int8_t options;
	u_int8_t hit;
	union {
		char string[CONFIG_VAL_STRING_LEN];
		int value;
		int (*parser)(char *argstr);
	} u;
} config_entry_t;

/* if an error occurs, config_errce is set to the erroneous ce */
config_entry_t *config_errce = NULL;
	
int config_parse_file(const char *fname, int final);
int config_register_key(config_entry_t *ce);

#endif /* ifndef _CONFFILE_H */