📄 tcp.h
字号:
/* 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 *);#endif /* _NIDS_TCP_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -