This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-fw-dns-plug/src/fw_dns_plug.h
2019-12-06 13:17:09 +08:00

15 lines
221 B
C

#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