summaryrefslogtreecommitdiffhomepage
path: root/contrib/fwd/src/fwd_config.h
blob: ba66dffea7dd53258bd9ee06896e81110baeefa4 (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
#ifndef __FWD_CONFIG_H__
#define __FWD_CONFIG_H__

#include "fwd.h"
#include "ucix.h"

/* fwd_check_option(uci_ctx, section, name, type) */
#define fwd_check_option(uci, sct, name, type)                       \
	struct fwd_##type *name = NULL;                                  \
	if( fwd_read_##type(uci, sct, #name, &name) )                    \
	{                                                                \
		printf("ERROR: section '%s' contains invalid %s in '%s'!\n", \
			sct, #type, #name);                                      \
        return;                                                      \
	}

/* structure to access fwd_data* in uci iter callbacks */
struct fwd_data_conveyor {
	struct fwd_data *head;
	struct fwd_data *cursor;
};

/* api */
struct fwd_data * fwd_read_config(void);
struct fwd_zone * fwd_lookup_zone(struct fwd_data *, const char *);

void fwd_free_config(struct fwd_data *);

#endif