?? flow_class.c
字號(hào):
#include "flow_class.h"#include "flow_error.h"/** * Find the relevant flow processing scheme for a packet * * @param p packet to find the flow scheme for * * @return 0 on success, 1 on failure */int flow_classifier(FLOWPACKET *p, int *flowtype){ if(p == NULL) { return FLOW_ENULL; } if(IsIPv4Packet(p)) { *flowtype = FLOW_IPV4; return FLOW_SUCCESS; } return FLOW_EINVALID;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -