plugin~1.h
来自「一百个病毒的源代码 包括熊猫烧香等 极其具有研究价值」· C头文件 代码 · 共 57 行
H
57 行
/*** Modular Logfile Analyzer** Copyright 2000 Jan Kneschke <jan@kneschke.de>**** Homepage: http://www.kneschke.de/projekte/modlogan** This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version, and provided that the above copyright and permission notice is included with all distributed copies of this or derived software. 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**** $Id: plugin_config.h,v 1.1 2000/08/27 21:44:49 jk Exp $*/#ifndef _INPUT_PLUGIN_CONFIG_H_#define _INPUT_PLUGIN_CONFIG_H_#include <stdio.h>#include <pcre.h>#include "mlist.h"#ifdef HAVE_LIBZ#include <zlib.h>#else #include "zlibwrapper.h"#endiftypedef struct { FILE *inputfile; char *inputfilename; char *buffer; int buf_len; int buf_inc; pcre *match_clf; pcre_extra *match_clf_extra; pcre *match_timestamp; pcre_extra *match_timestamp_extra; pcre *match_url; pcre_extra *match_url_extra;} config_input;#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?