22 lines
419 B
C
22 lines
419 B
C
#ifndef CONF_H
|
|
#define CONF_H
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <error.h>
|
|
#include <unistd.h>
|
|
#include "ais.h"
|
|
|
|
// 配置文件结构
|
|
typedef struct CONF {
|
|
int IP_RESTRICTION;
|
|
char *IP_SEGMENT;
|
|
} conf;
|
|
|
|
void read_conf(char *filename, conf * configure);
|
|
void free_conf(conf * p);
|
|
void split_string(char string[], char delims[], char (*whitelist_ip)[WHITELIST_IP_NUM]);
|
|
|
|
#endif
|