亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ftstat.c

?? netflow,抓包
?? C
?? 第 1 頁 / 共 5 頁
字號:
#define FT_STAT_OPT_PERCENT             0x001#define FT_STAT_OPT_NAMES               0x002#define FT_STAT_OPT_SORT                0x004#define FT_STAT_OPT_HEADER              0x008#define FT_STAT_OPT_XHEADER             0x010#define FT_STAT_OPT_TOTALS              0x020#define FT_STAT_OPT_TALLY               0x080#define FT_STAT_OPT_TAG_MASK            0x100#define FT_STAT_OPT_SRC_PREFIX_LEN      0x200#define FT_STAT_OPT_SRC_PREFIX_MASK     0x400#define FT_STAT_OPT_DST_PREFIX_LEN      0x800#define FT_STAT_OPT_DST_PREFIX_MASK     0x1000#define FT_STAT_OPT_ALL                 0x16FF#define FT_STAT_OPT_GENERIC             0x00FF#define FT_STAT_OPT_GENERIC_IP_ADDR     0x07FF#define FT_STAT_OPT_NONE                0x0#define FT_STAT_FIELD_INDEX      0x00000001#define FT_STAT_FIELD_FIRST      0x00000002#define FT_STAT_FIELD_LAST       0x00000004#define FT_STAT_FIELD_FLOWS      0x00000010#define FT_STAT_FIELD_OCTETS     0x00000020#define FT_STAT_FIELD_PACKETS    0x00000040#define FT_STAT_FIELD_DURATION   0x00000080#define FT_STAT_FIELD_AVG_PPS    0x00000100#define FT_STAT_FIELD_AVG_BPS    0x00000200#define FT_STAT_FIELD_MAX_PPS    0x00000400#define FT_STAT_FIELD_MAX_BPS    0x00000800#define FT_STAT_FIELD_MIN_PPS    0x00001000#define FT_STAT_FIELD_MIN_BPS    0x00002000#define FT_STAT_FIELD_OTHER      0x00004000#define FT_STAT_FIELD_KEY        0x00008000 /* reports with a single key */#define FT_STAT_FIELD_KEY1       0x00010000#define FT_STAT_FIELD_KEY2       0x00020000#define FT_STAT_FIELD_KEY3       0x00040000#define FT_STAT_FIELD_KEY4       0x00080000#define FT_STAT_FIELD_KEY5       0x00100000#define FT_STAT_FIELD_KEY6       0x00200000#define FT_STAT_FIELD_COUNT      0x01000000 /* reports that do a count */#define FT_STAT_FIELD_FRECS      0x02000000 /* flow records in report line */#define FT_STAT_FIELD_PPS        0x00001500 /* any *_PPS */#define FT_STAT_FIELD_BPS        0x00002A00 /* any *_BPS */#define FT_STAT_FIELD_PS         (FT_STAT_FIELD_PPS|FT_STAT_FIELD_BPS)#define FT_STAT_FIELD_GENERIC    0x0200FFF7 /* most reports */#define FT_STAT_FIELD_GENERIC2   0x02037FF7 /* reports with 2 key fields */#define FT_STAT_FIELD_GENERIC3   0x02077FF7 /* reports with 3 key fields */#define FT_STAT_FIELD_GENERIC4   0x020F7FF7 /* reports with 4 key fields */#define FT_STAT_FIELD_GENERIC5   0x021F7FF7 /* reports with 5 key fields */#define FT_STAT_FIELD_GENERIC6   0x023F7FF7 /* reports with 6 key fields */#define FT_STAT_SORT_ASCEND      0x1#define FT_STAT_SORT_DESCEND     0x2struct tally {  u_int64 rt_flows, rt_octets, rt_packets, rt_recs, t_recs;  double ravg_bps, ravg_pps, rt_frecs;};struct flow_bucket {  u_int64 *recs, *flows, *octets, *packets, *duration;  double *avg_pps, *avg_bps;  double *min_pps, *min_bps;  double *max_pps, *max_bps;  u_int32 *index;}; /* flow_bucket */struct line_parser {  enum ftstat_parse_state state;  struct ftstat_rpt *cur_rpt;  struct ftstat_def *cur_def;  struct ftstat_rpt_out *cur_rpt_out;  int lineno;  char *buf, *fname, *word;};struct jump {  char *name;  enum ftstat_parse_state state;  int (*func)(struct line_parser *lp, struct ftstat *ftstat);};struct typelookup {  char *name;  void* (*f_new)();  void* (*f_accum)();  void* (*f_calc)();  void* (*f_dump)();  void* (*f_free)();  int allowed_fields; /* FT_STAT_FIELD_* */  int allowed_options;/* FT_STAT_OPT_* */  u_int64 xfields; /* FT_XFIELD_* */};struct ftstat_rpt_1 {  u_int64 time;       /* total time in 1/1000 of flows */  double  aflowtime;  /* average time of flow */  double  aps;        /* average packet size */  double  afs;        /* average flow size */  double  apf;        /* average packets per flow */  double  fps;        /* average flows per second */  double  fps_real;   /* average flows per second (realtime) */  u_int64 start;      /* earliest flow time */  u_int64 end;        /* latest flow time */  u_int32 time_start; /* earliest flow (realtime) */  u_int32 time_end;   /* last flow (realtime) */  u_int32 time_real;  /* realtime duration */  /* average packet sizes */  u_int64 psize32;    /* bytes/packet 1    <= p <= 32 */  u_int64 psize64;    /* bytes/packet 32   < p <= 64  */  u_int64 psize96; u_int64 psize128; u_int64 psize160; u_int64 psize192;  u_int64 psize224; u_int64 psize256; u_int64 psize288; u_int64 psize320;  u_int64 psize352; u_int64 psize384; u_int64 psize416; u_int64 psize448;  u_int64 psize480; u_int64 psize512; u_int64 psize544; u_int64 psize576;  u_int64 psize1024; u_int64 psize1536; u_int64 psize2048; u_int64 psize2560;  u_int64 psize3072; u_int64 psize3584; u_int64 psize4096; u_int64 psize4608;  /* packets per flow */  u_int64 fpsize1;    /* packets/flow = 1 */  u_int64 fpsize2;    /* packets/flow = 2 */  u_int64 fpsize4;    /* packets/flow 2 < p <= 4 */  u_int64 fpsize8;    /* packets/flow 4 < p <= 8 */  u_int64 fpsize12; u_int64 fpsize16; u_int64 fpsize20; u_int64 fpsize24;  u_int64 fpsize28; u_int64 fpsize32; u_int64 fpsize36; u_int64 fpsize40;  u_int64 fpsize44; u_int64 fpsize48; u_int64 fpsize52; u_int64 fpsize60;  u_int64 fpsize100; u_int64 fpsize200; u_int64 fpsize300; u_int64 fpsize400;  u_int64 fpsize500; u_int64 fpsize600; u_int64 fpsize700; u_int64 fpsize800;  u_int64 fpsize900;  u_int64 fpsize_other; /* packets/flow 200 < p */  /* octets per flow */  u_int64 fosize32;     /* octets/flow 1    <= p <= 32 */  u_int64 fosize64;     /* octets/flow 32   < p <= 64 */  u_int64 fosize128;    /* octets/flow 64   < p <= 128 */  u_int64 fosize256;    /* octets/flow 128   < p <= 256 */  u_int64 fosize512; u_int64 fosize1280; u_int64 fosize2048;  u_int64 fosize2816; u_int64 fosize3584; u_int64 fosize4352;  u_int64 fosize5120; u_int64 fosize5888; u_int64 fosize6656;  u_int64 fosize7424; u_int64 fosize8192; u_int64 fosize8960;  u_int64 fosize9728; u_int64 fosize10496; u_int64 fosize11264;  u_int64 fosize12032; u_int64 fosize12800; u_int64 fosize13568;  u_int64 fosize14336; u_int64 fosize15104; u_int64 fosize15872;  u_int64 fosize_other; /* octets/flow 15872   < p */  /* time per flow */  u_int64 ftime10;    /* time/flow 1 <= p <= 10 */  u_int64 ftime50;    /* time/flow 10 < p <= 50 */  u_int64 ftime100; u_int64 ftime200; u_int64 ftime500; u_int64 ftime1000;  u_int64 ftime2000; u_int64 ftime3000; u_int64 ftime4000; u_int64 ftime5000;  u_int64 ftime6000; u_int64 ftime7000; u_int64 ftime8000; u_int64 ftime9000;  u_int64 ftime10000; u_int64 ftime12000; u_int64 ftime14000;  u_int64 ftime16000; u_int64 ftime18000; u_int64 ftime20000;  u_int64 ftime22000; u_int64 ftime24000; u_int64 ftime26000;  u_int64 ftime28000; u_int64 ftime30000;  u_int64 ftime_other;  /* time/flow 2000 < p */};struct ftstat_rpt_2 {  int foo; /* malloc place holder */};struct ftstat_rpt_3 {  struct ftchash *ftch;};struct ftstat_rpt_4 {  struct ftchash *ftch;};struct ftstat_rpt_5 {  struct ftchash *ftch;};struct ftstat_rpt_6 {  struct flow_bucket bucket;};struct ftstat_rpt_7 {  struct flow_bucket bucket;};struct ftstat_rpt_8 {  struct ftchash *ftch;};struct ftstat_rpt_9 {  struct ftchash *ftch;};struct ftstat_rpt_10 {  struct ftchash *ftch;};struct ftstat_rpt_11 {  struct flow_bucket bucket;};struct ftstat_rpt_12 {  struct flow_bucket bucket;};struct ftstat_rpt_13 {  struct flow_bucket bucket;};struct ftstat_rpt_14 {  struct ftchash *ftch;};struct ftstat_rpt_15 {  struct ftchash *ftch;};struct ftstat_rpt_16 {  struct ftchash *ftch;};struct ftstat_rpt_17 {  struct ftchash *ftch;};struct ftstat_rpt_18 {  struct ftchash *ftch;};struct ftstat_rpt_19 {  struct flow_bucket bucket;};struct ftstat_rpt_20 {  struct flow_bucket bucket;};struct ftstat_rpt_21 {  struct ftchash *ftch;};struct ftstat_rpt_22 {  struct flow_bucket bucket;};struct ftstat_rpt_23 {  struct flow_bucket bucket;};struct ftstat_rpt_24 {  struct ftchash *ftch;};struct ftstat_rpt_25 {  struct ftchash *ftch;};struct ftstat_rpt_26 {  struct ftchash *ftch;};struct ftstat_rpt_27 {  struct ftchash *ftch;};struct ftstat_rpt_28 {  struct ftchash *ftch;};struct ftstat_rpt_29 {  struct ftchash *ftch;};struct ftstat_rpt_30 {  struct ftchash *ftch;};struct ftstat_rpt_31 {  struct ftchash *ftch;};struct ftstat_rpt_32 {  struct ftchash *ftch;};struct ftstat_rpt_33 {  struct ftchash *ftch;};struct ftstat_rpt_34 {  struct ftchash *ftch;};struct ftstat_rpt_35 {  struct ftchash *ftch;};struct ftstat_rpt_36 {  struct ftchash *ftch;};struct ftstat_rpt_37 {  struct ftchash *ftch;};struct ftstat_rpt_38 {  struct ftchash *ftch;};struct ftstat_rpt_39 {  struct ftchash *ftch;};struct ftstat_rpt_40 {  struct ftchash *ftch;};struct ftstat_rpt_41 {  struct ftchash *ftch;};struct ftstat_rpt_42 {  struct ftchash *ftch;};struct ftstat_rpt_43 {  struct ftchash *ftch;};struct ftstat_rpt_44 {  struct ftchash *ftch;};struct ftstat_rpt_45 {  struct ftchash *ftch;};struct ftstat_rpt_46 {  struct flow_bucket bucket;};struct ftstat_rpt_47 {  struct flow_bucket bucket;};struct ftstat_rpt_48 {  struct ftchash *ftch;};struct ftstat_rpt_49 {  struct ftchash *ftch;};struct ftstat_rpt_50 {  struct ftchash *ftch;};struct ftstat_rpt_51 {  struct ftchash *ftch;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品 日产精品 欧美精品| 欧美成人一区二区三区| 欧美成人精品3d动漫h| 久久综合九色综合97婷婷女人| 欧美三级午夜理伦三级中视频| 欧美网站一区二区| 日韩欧美www| 国产精品久久久久久亚洲伦| 国产精品久久久久毛片软件| 亚洲综合成人在线| 精品一区二区免费视频| 国产精品 日产精品 欧美精品| 97se亚洲国产综合在线| 9191精品国产综合久久久久久| 久久综合成人精品亚洲另类欧美 | 中文成人av在线| 亚洲精品视频在线观看免费| 美女一区二区在线观看| 狠狠色丁香久久婷婷综合_中| 成人午夜又粗又硬又大| 欧美欧美欧美欧美首页| 国产清纯白嫩初高生在线观看91 | 欧美午夜片在线观看| 久久久久久黄色| 亚洲高清视频中文字幕| 99精品国产99久久久久久白柏| 欧美精品久久99久久在免费线| 亚洲免费av高清| 成人av电影在线网| 国产蜜臀97一区二区三区| 日本不卡一区二区三区| 欧美性猛交一区二区三区精品| 国产精品欧美经典| 激情六月婷婷久久| 精品免费99久久| 精品在线播放午夜| 久久超碰97人人做人人爱| 欧美猛男gaygay网站| 精品一区二区三区免费观看| 亚洲人成网站色在线观看| 欧美一区二区三区免费在线看| 国产黑丝在线一区二区三区| 亚洲电影一级片| 中文字幕一区不卡| 日韩美一区二区三区| 色综合久久六月婷婷中文字幕| 久久99精品久久久| 一区二区免费视频| 亚洲色大成网站www久久九九| 久久久久久**毛片大全| 欧美欧美欧美欧美首页| 91香蕉视频在线| 国产91精品一区二区麻豆亚洲| 看片网站欧美日韩| 日日夜夜免费精品| 亚洲综合丁香婷婷六月香| 国产精品短视频| 成人免费在线视频| 国产精品久久99| 亚洲免费电影在线| 一区二区三区不卡视频在线观看| 国产精品免费视频一区| 国产日韩欧美精品电影三级在线| 久久久蜜桃精品| 欧美国产一区在线| 国产精品福利在线播放| 国产精品日日摸夜夜摸av| 中文字幕中文字幕一区二区 | 国产在线一区观看| 精品一区二区国语对白| 美女脱光内衣内裤视频久久影院| 国产乱人伦偷精品视频不卡| 国产伦精品一区二区三区视频青涩 | 91.xcao| 国产欧美一区二区精品性| 中文字幕av不卡| 亚洲国产裸拍裸体视频在线观看乱了| 欧美一级理论性理论a| 欧美剧情电影在线观看完整版免费励志电影 | 在线精品亚洲一区二区不卡| 久久福利资源站| 欧美激情综合五月色丁香| 欧美一区二区三区在线观看视频| 成人视屏免费看| 成人黄色综合网站| 国产**成人网毛片九色| 另类成人小视频在线| 奇米精品一区二区三区四区 | 国产亚洲一区字幕| 精品国产1区二区| 精品免费国产二区三区 | 日韩精品电影一区亚洲| 日本在线不卡一区| 久久99热国产| 国产成人综合网站| 国产成人自拍在线| 成人av综合在线| 91麻豆自制传媒国产之光| 在线免费av一区| 欧美日韩精品系列| 欧美疯狂做受xxxx富婆| 欧美不卡123| 久久久美女毛片| 日韩欧美色电影| 亚洲女爱视频在线| 国产综合色产在线精品| 亚洲男人的天堂网| 日韩欧美一二三区| 亚洲青青青在线视频| 精品一区二区三区的国产在线播放| 免费成人美女在线观看| 在线精品视频免费播放| 欧美一级生活片| 亚洲国产精品一区二区尤物区| 蜜桃在线一区二区三区| 色综合激情久久| 综合中文字幕亚洲| 精品系列免费在线观看| 欧美精品第一页| 午夜精品一区二区三区电影天堂| 色94色欧美sute亚洲线路一久| 日av在线不卡| 国产久卡久卡久卡久卡视频精品| 国产精品一区二区三区网站| 日本精品一区二区三区高清 | 久久精品无码一区二区三区| 亚洲免费av观看| 亚洲成人动漫精品| 一本一本大道香蕉久在线精品| 欧美午夜理伦三级在线观看| 国产精品第一页第二页第三页| 六月丁香婷婷久久| 欧美亚洲自拍偷拍| 亚洲区小说区图片区qvod| 国产精品69毛片高清亚洲| 日韩欧美黄色影院| 日韩电影在线免费看| 欧美体内she精高潮| 一区二区在线观看视频| aaa国产一区| 国产精品欧美极品| 狠狠色狠狠色综合系列| 欧美一区二区成人| 日本视频一区二区三区| 欧美日韩激情一区二区三区| 久久精品亚洲精品国产欧美kt∨| 国产一区二区看久久| 欧美日韩成人高清| 日韩国产在线一| 欧美精品一区视频| 经典三级视频一区| 中文字幕乱码亚洲精品一区| 97久久久精品综合88久久| 亚洲午夜久久久久中文字幕久| 色悠悠亚洲一区二区| 亚洲综合视频网| 精品欧美一区二区三区精品久久| 久久99国产精品久久99果冻传媒| 久久综合一区二区| 91亚洲国产成人精品一区二区三| 一区二区三区国产精品| 欧美丰满一区二区免费视频| 蜜桃av一区二区在线观看| 欧美激情一区二区三区不卡| 日本精品裸体写真集在线观看| 三级亚洲高清视频| 国产精品国产馆在线真实露脸 | 久久一夜天堂av一区二区三区 | 成人福利视频在线看| 亚洲国产wwwccc36天堂| 日韩一区二区免费高清| 国产成人精品三级| 蜜桃av噜噜一区| 亚洲欧美国产高清| 久久综合网色—综合色88| 欧美色大人视频| 成人app软件下载大全免费| 肉肉av福利一精品导航| 亚洲成人av中文| 亚洲一区二区高清| 亚洲国产精品v| 国产欧美一区二区精品性色超碰| 69久久99精品久久久久婷婷| 欧美亚洲日本一区| 在线观看视频91| 欧美三级电影网| 欧美丝袜丝nylons| 精品国产露脸精彩对白| 欧美亚洲一区二区在线观看| 欧美主播一区二区三区| 色久优优欧美色久优优| 91麻豆免费观看| 色综合久久精品| 欧美人妇做爰xxxⅹ性高电影| 欧美精品一二三区| 日本黄色一区二区| 欧美日韩五月天| 欧美xxxx在线观看| 日本一区二区三区高清不卡| 国产亚洲精品aa午夜观看|