spp_template.h
来自「该软件是一个有名的基于网络的入侵检测系统」· C头文件 代码 · 共 27 行
H
27 行
/* $Id: spp_template.h,v 1.3 2000/03/16 02:58:58 roesch Exp $ */
/* Snort Preprocessor Plugin Header File Template */
/* This file gets included in plugbase.h when it is integrated into the rest
* of the program. Sometime in The Future, I'll whip up a bad ass Perl script
* to handle automatically loading all the required info into the plugbase.*
* files.
*/
#include "snort.h"
#ifndef __SPP_TEMPLATE_H__
#define __SPP_TEMPLATE_H__
typedef struct _TemplateData
{
/* your data goes here! */
} TemplateData;
/* list of function prototypes for this preprocessor */
void SetupTemplate();
void TemplateInit(u_char *);
void ParseTemplateArgs(char *);
void PreprocFunction(Packet *);
#endif /* __SPP_TEMPLATE_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?