flow_cache.h

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

H
45
字号
#ifndef _FLOW_CACHE_H#define _FLOW_CACHE_H#include "flow.h"#include "sfxhash.h"typedef struct _FCSTAT{    uint64_t find_ops;    uint64_t reversed_ops;    uint64_t find_success;    uint64_t find_fail;    uint64_t new_flows;    uint64_t released_flows;} FCSTAT;typedef struct _FLOWCACHE{    SFXHASH *ipv4_table;    /* statistics */    FCSTAT total;            /* statistics for everything */    FCSTAT per_proto[256];   /* statistics kept per protocol */} FLOWCACHE;int flowcache_init(FLOWCACHE *flowcachep, unsigned int rows, int memcap,                   FLOWHASHID hashid);int flowcache_destroy(FLOWCACHE *flowcachep);int flowcache_releaseflow(FLOWCACHE *flowcachep, FLOW **flowpp);int flowcache_newflow(FLOWCACHE *flowcachep, FLOWKEY *keyp, FLOW **flowpp);int flowcache_find(FLOWCACHE *flowcachep, FLOWKEY *keyp,                   FLOW **flowpp, int *direction);void flowcache_stats(FILE *stream, FLOWCACHE *flowcachep);int flowcache_overhead_bytes(FLOWCACHE *fcp);int flowcache_memcap(FLOWCACHE *fcp);int flowcache_row_count(FLOWCACHE *fcp);/* utilty functions */const char *flowcache_pname(FLOW_POSITION position);#endif /* _FLOW_CACHE_H */

⌨️ 快捷键说明

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