tcp.h

来自「libnids w32 libnids w32 libnids w32 libn」· C头文件 代码 · 共 30 行

H
30
字号
/*  Copyright (c) 1999 Rafal Wojtczuk <nergal@avet.com.pl>. All rights reserved.  See the file COPYING for license details.*/#ifndef _NIDS_TCP_H#define _NIDS_TCP_Hstruct skbuff {  struct skbuff *next;  struct skbuff *prev;  void *data;  u_int len;  u_int truesize;  u_int urg_ptr;    char fin;  char urg;  u_int seq;  u_int ack;};int tcp_init(int);void process_tcp(u_char *, int);void process_icmp(u_char *);void clear_stream_buffers();#endif /* _NIDS_TCP_H */

⌨️ 快捷键说明

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