scan.h
来自「libnids w32 libnids w32 libnids w32 libn」· C头文件 代码 · 共 28 行
H
28 行
/* Copyright (c) 1999 Rafal Wojtczuk <nergal@avet.com.pl>. All rights reserved. See the file COPYING for license details.*/#ifndef _NIDS_SCAN_H#define _NIDS_SCAN_Hstruct scan { u_int addr; unsigned short port; u_char flags;};struct host { struct host *next; struct host *prev; u_int addr; int modtime; int n_packets; struct scan *packets;};void scan_init(void);void detect_scan(struct ip *);#endif /* _NIDS_SCAN_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?