📄 flow_callback.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -