📄 spp_template.h
字号:
/* $Id: spp_template.h,v 1.2 2000/11/13 06:01:25 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 *);
void PreprocRestartFunction(int);
void PreprocCleanExitFunction(int);
#endif /* __SPP_TEMPLATE_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -