acd_define.h
来自「自己写的入侵检测源码」· C头文件 代码 · 共 56 行
H
56 行
#define SYSTEMCALL_COUNT 3
#define PROCESS_COUNT 10
typedef struct process
{
char comm[6];
int count;
}procsess_list_struct;
struct canshuo
{
char canshuo_name[32];
struct canshuo *next;
};
typedef struct systemcall
{
int count;
char systemcall_name[32];
struct canshuo *head;
int process_number;
}systemcall_list_struct;
typedef struct exe_file_struct
{
char exe_file_name[32];
int right;
} exe_file_struct;
typedef struct exe_acd_struct
{
exe_file_struct exe_file_name_node;
systemcall_list_struct systemcall_list[SYSTEMCALL_COUNT];
procsess_list_struct process_list[PROCESS_COUNT];
char feifa_xinxi[100];
}exe_acd_struct;
struct feifa_xinxi_struct
{
struct exe_acd_struct *feifa_xinxi_node;
struct feifa_xinxi_struct *next;
};
struct feifa_xinxi_struct *acd_head;
struct feifa_xinxi_struct *acd_head1;
int testnum=556;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?