forked from darkk/redsocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.h
51 lines (38 loc) · 1.47 KB
/
parser.h
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
#ifndef PARSER_H_THU_JAN_11_04_49_38_2007
#define PARSER_H_THU_JAN_11_04_49_38_2007
#include <stdio.h>
#include <stdbool.h>
typedef enum {
pt_bool, // "bool" from stdbool.h, not "_Bool" or anything else
pt_pchar,
pt_uint16,
pt_in_addr,
pt_in_addr2, // inaddr[0] = net, inaddr[1] = netmask
} parser_type;
typedef struct parser_entry_t {
const char *key;
parser_type type;
void *addr;
} parser_entry;
typedef struct parser_context_t parser_context;
typedef struct parser_section_t parser_section;
typedef int (*parser_section_onenter)(parser_section *section);
typedef int (*parser_section_onexit)(parser_section *section);
struct parser_section_t {
parser_section *next;
parser_context *context;
const char *name;
parser_section_onenter onenter; // is called on entry to section
parser_section_onexit onexit; // is called on exit from section
parser_entry *entries;
void *data;
};
typedef void (*parser_errhandler)(const char *errmsg, int line);
parser_context* parser_start(FILE *fd, parser_errhandler errhandler);
void parser_add_section(parser_context *context, parser_section *section);
int parser_run(parser_context *context);
void parser_error(parser_context *context, const char *msg);
void parser_stop(parser_context *context);
/* vim:set tabstop=4 softtabstop=4 shiftwidth=4: */
/* vim:set foldmethod=marker foldlevel=32 foldmarker={,}: */
#endif /* PARSER_H_THU_JAN_11_04_49_38_2007 */