flow_callback.h

来自「snort-2.1.0入侵检测」· C头文件 代码 · 共 27 行

H
27
字号
#ifndef _FLOW_CALLBACK_H#define _FLOW_CALLBACK_H#include "flow.h"#include "flow_cache.h"typedef struct _FLOWCALLBACKDATA{    char use_once;    /* do the matching on the initiator side of a conversation */    uint32_t resp_address;    uint32_t resp_port;    /* do the matching on the reponder side of a conversation */    uint32_t init_address;    uint32_t init_port;        time_t expiration;        unsigned char postition; /* where in the flow back module we should be called */    unsigned char order;     /* when sorting out the callbacks, 0,1,2... undefined between the same orders */    // int (*flow_callback)(int position, FLOW *flow, int direction, Packet *p);} FLOWCALLBACKDATA;int flow_callbacks(FLOW_POSITION position, FLOW *flowp, int direction, FLOWPACKET *p);#endif /* _FLOW_CALLBACK_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?