• 大小: 1.85MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-27
  • 语言: VB
  • 标签: vc  

资源简介

Privoxy-src-20160904.rar 官网说明: https://sourceforge.net/p/ijbswa/code/?source=navbar

资源截图

代码片段和文件信息

const char actions_rcs[] = “$Id: actions.cv 1.97 2016/05/03 13:20:37 fabiankeil Exp $“;
/*********************************************************************
 *
 * File        :  $Source: /cvsroot/ijbswa/current/actions.cv $
 *
 * Purpose     :  Declares functions to work with actions files
 *
 * Copyright   :  Written by and Copyright (C) 2001-2016 the
 *                Privoxy team. http://www.privoxy.org/
 *
 *                based on the Internet Junkbuster originally written
 *                by and Copyright (C) 1997 Anonymous Coders and
 *                Junkbusters Corporation.  http://www.junkbusters.com
 *
 *                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.
 *
 *                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.
 *
 *                The GNU General Public License should be included with
 *                this file.  If not you can view it at
 *                http://www.gnu.org/copyleft/gpl.html
 *                or write to the Free Software Foundation Inc. 59
 *                Temple Place - Suite 330 Boston MA  02111-1307 USA.
 *
 *********************************************************************/


#include “config.h“

#include 
#include 
#include 
#include 

#ifdef FEATURE_PTHREAD
#include 
#endif

#include “project.h“
#include “jcc.h“
#include “list.h“
#include “actions.h“
#include “miscutil.h“
#include “errlog.h“
#include “loaders.h“
#include “encode.h“
#include “urlmatch.h“
#include “cgi.h“
#include “ssplit.h“
#include “filters.h“

const char actions_h_rcs[] = ACTIONS_H_VERSION;


/*
 * We need the main list of options.
 *
 * First we need a way to tell between boolean string and multi-string
 * options.  For string and multistring options we also need to be
 * able to tell the difference between a “+“ and a “-“.  (For bools
 * the “+“/“-“ information is encoded in “add“ and “mask“).  So we use
 * an enumerated type (well the preprocessor equivalent).  Here are
 * the values:
 */
enum action_value_type {
   AV_NONE       = 0 /* +opt -opt */
   AV_ADD_STRING = 1 /* +stropt{string} */
   AV_REM_STRING = 2 /* -stropt */
   AV_ADD_MULTI  = 3 /* +multiopt{string} +multiopt{string2} */
   AV_REM_MULTI  = 4  /* -multiopt{string} -multiopt          */
};

/*
 * We need a structure to hold the name flag changes
 * type and string index.
 */
st

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        401  2006-08-18 23:23  Privoxy-src-20160904\.cvsignore

     文件       8826  2014-06-02 14:22  Privoxy-src-20160904\acconfig.h

     文件      11356  2014-06-02 14:22  Privoxy-src-20160904\actionlist.h

     文件      63931  2016-05-03 21:20  Privoxy-src-20160904\actions.c

     文件       4081  2013-11-24 22:27  Privoxy-src-20160904\actions.h

     文件       6693  2012-03-10 00:24  Privoxy-src-20160904\amiga.c

     文件       5527  2011-09-04 19:10  Privoxy-src-20160904\amiga.h

     文件       3268  2016-08-26 20:31  Privoxy-src-20160904\AUTHORS

     文件      77582  2016-05-03 21:22  Privoxy-src-20160904\cgi.c

     文件       5679  2013-11-24 22:23  Privoxy-src-20160904\cgi.h

     文件     139250  2016-07-24 01:23  Privoxy-src-20160904\cgiedit.c

     文件       5178  2013-11-24 22:23  Privoxy-src-20160904\cgiedit.h

     文件      64654  2016-05-22 20:43  Privoxy-src-20160904\cgisimple.c

     文件       5306  2016-03-17 18:40  Privoxy-src-20160904\cgisimple.h

     文件     120895  2016-08-26 20:30  Privoxy-src-20160904\ChangeLog

     文件      19172  2016-05-22 20:43  Privoxy-src-20160904\client-tags.c

     文件       2399  2016-05-22 20:43  Privoxy-src-20160904\client-tags.h

     文件      70510  2016-08-26 21:14  Privoxy-src-20160904\config

     文件      46484  2014-10-06 18:17  Privoxy-src-20160904\config.guess

     文件      37563  2014-10-06 18:17  Privoxy-src-20160904\config.sub

     文件      35576  2016-08-26 20:26  Privoxy-src-20160904\configure.in

     文件       3758  2016-09-04 18:38  Privoxy-src-20160904\CVS\Entries

     文件       1903  2016-09-04 18:38  Privoxy-src-20160904\CVS\Entries.Extra

     文件       1918  2016-09-04 18:38  Privoxy-src-20160904\CVS\Entries.Extra.Old

     文件       3769  2016-09-04 18:38  Privoxy-src-20160904\CVS\Entries.Old

     文件          9  2016-09-04 18:34  Privoxy-src-20160904\CVS\Repository

     文件         63  2016-09-04 18:34  Privoxy-src-20160904\CVS\Root

     文件       2319  2011-09-04 19:10  Privoxy-src-20160904\cygwin.h

     文件      13077  2016-02-26 20:29  Privoxy-src-20160904\deanimate.c

     文件       2745  2013-11-24 22:23  Privoxy-src-20160904\deanimate.h

............此处省略590个文件信息

评论

共有 条评论