⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hi_client.h

📁 入侵检测SNORT.最近更新的基于网络检测的IDS.希望能给大家带来方便.
💻 H
字号:
/* $Id$ *//**************************************************************************** * * Copyright (C) 2003-2008 Sourcefire, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License Version 2 as * published by the Free Software Foundation.  You may not use, modify or * distribute this program under any other version of the GNU General * Public License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ****************************************************************************/#ifndef __HI_CLIENT_H__#define __HI_CLIENT_H__#ifdef HAVE_CONFIG_H#include "config.h"#endif#include <sys/types.h>#include "hi_include.h"#include "hi_eo.h"#include "hi_eo_events.h"typedef struct s_COOKIE_PTR{    const u_char *cookie;    const u_char *cookie_end;    struct s_COOKIE_PTR *next;} COOKIE_PTR;typedef struct s_HI_CLIENT_REQ{    /*    u_char *method;    int  method_size;    */    const u_char *uri;    const u_char *uri_norm;    const u_char *post_raw;    const u_char *post_norm;    const u_char *header_raw;    const u_char *header_norm;    COOKIE_PTR cookie;    const u_char *cookie_norm;    const u_char *method_raw;    u_int uri_size;    u_int uri_norm_size;    u_int post_raw_size;    u_int post_norm_size;    u_int header_raw_size;    u_int header_norm_size;    u_int cookie_norm_size;    u_int method_size;    /*    u_char *param;    u_int  param_size;    u_int  param_norm;    */    /*    u_char *ver;    u_int  ver_size;    u_char *hdr;    u_int  hdr_size;    u_char *payload;    u_int  payload_size;    */    const u_char *pipeline_req;    u_char method;}  HI_CLIENT_REQ;typedef struct s_HI_CLIENT{    HI_CLIENT_REQ request;    int (*state)(void *, unsigned char, int);    HI_CLIENT_EVENTS event_list;}  HI_CLIENT;int hi_client_inspection(void *Session, const unsigned char *data, int dsize);int hi_client_init(HTTPINSPECT_GLOBAL_CONF *GlobalConf);#endif 

⌨️ 快捷键说明

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