create version

This commit is contained in:
liuxueli
2019-12-06 13:17:09 +08:00
commit 70b19290ce
10 changed files with 2210 additions and 0 deletions

15
src/fw_dns_plug.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef __FW_DNS_PLUG_H__
#define __FW_DNS_PLUG_H__
#include "fw_dns_rule.h"
#define MAX_ANSWER_RECORDS_NUM 32
struct _fw_dns_plug
{
int table_qname_id;
char table_qname[MAX_TABLE_NAME_LEN];
void *logger;
};
#endif