X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=showargs.c;h=6bd486092b72ce62ec03b36d5c4f5e4f5d00a244;hp=a5b85b381f0a1c3be9d6156d32e460b8147491d8;hb=25330cfa3ef351a2ca78e9b3c2c8688ca1e8baab;hpb=4793e1be2b24df19d6aa42a84b95653d040054f9 diff --git a/showargs.c b/showargs.c index a5b85b38..6bd48609 100644 --- a/showargs.c +++ b/showargs.c @@ -1,4 +1,4 @@ -const char showargs_rcs[] = "$Id: showargs.c,v 1.8 2001/05/29 09:50:24 jongfoster Exp $"; +const char showargs_rcs[] = "$Id: showargs.c,v 1.13 2001/06/06 09:37:59 sarantis Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/showargs.c,v $ @@ -33,6 +33,73 @@ const char showargs_rcs[] = "$Id: showargs.c,v 1.8 2001/05/29 09:50:24 jongfoste * * Revisions : * $Log: showargs.c,v $ + * Revision 1.13 2001/06/06 09:37:59 sarantis + * Fix misplaced comment start. + * + * Revision 1.12 2001/06/04 10:41:52 swa + * show version string of cgi.h and cgi.c + * + * Revision 1.11 2001/06/03 11:03:48 oes + * Makefile/in + * + * introduced cgi.c + * + * actions.c: + * + * adapted to new enlist_unique arg format + * + * conf loadcfg.c + * + * introduced confdir option + * + * filters.c filtrers.h + * + * extracted-CGI relevant stuff + * + * jbsockets.c + * + * filled comment + * + * jcc.c + * + * support for new cgi mechansim + * + * list.c list.h + * + * functions for new list type: "map" + * extended enlist_unique + * + * miscutil.c .h + * introduced bindup() + * + * parsers.c parsers.h + * + * deleted const struct interceptors + * + * pcrs.c + * added FIXME + * + * project.h + * + * added struct map + * added struct http_response + * changes struct interceptors to struct cgi_dispatcher + * moved HTML stuff to cgi.h + * + * re_filterfile: + * + * changed + * + * showargs.c + * NO TIME LEFT + * + * Revision 1.10 2001/05/31 21:36:07 jongfoster + * Added RCS for actions.[ch] and list.[ch] + * + * Revision 1.9 2001/05/29 23:11:38 oes + * + * - Moved strsav() from showargs to miscutil + * * Revision 1.8 2001/05/29 09:50:24 jongfoster * Unified blocklist/imagelist/permissionslist. * File format is still under discussion, but the internal changes @@ -227,69 +294,18 @@ void savearg(char *c, char *o, struct configuration_spec * config) *********************************************************************/ void init_proxy_args(int argc, const char *argv[], struct configuration_spec * config) { - const struct gateway *g; - char * b; + char * b = NULL; int i; freez(config->proxy_args_header); - freez(config->proxy_args_invocation); - freez(config->proxy_args_gateways); - freez(config->proxy_args_trailer); + - - b = NULL; - b = strsav(b, - "HTTP/1.0 200 OK\n" - "Server: IJ/" VERSION "\n" - "Content-type: text/html\n\n" - - "" - "" - "Internet Junkbuster Proxy Status" - "\n" - "\n" - "
\n" - "

" BANNER "\n" - "Proxy Status\n" - "

\n" - "

You are using the " BANNER " TM

\n" - "Version: " VERSION "\n" - "
Home page: " HOME_PAGE_URL "\n" - "

\n" - ); - - b = strsav(b, - "

The program was invoked as follows

\n"); - for (i=0; i < argc; i++) { b = strsav(b, argv[i]); b = strsav(b, " "); } - b = strsav(b, "
\n"); - config->proxy_args_header = b; - - config->proxy_args_invocation = strsav( - config->proxy_args_invocation, - "
\n" - "and the following options were set in the configuration file" - "

\n" - ); - - b = NULL; - - b = strsav(b, - "

It supports the following gateway protocols:

\n"); - - for (g = gateways; g->name; g++) - { - b = strsav(b, g->name); - b = strsav(b, " "); - } - b = strsav(b, "
\n"); - - config->proxy_args_gateways = b; } @@ -301,10 +317,10 @@ void init_proxy_args(int argc, const char *argv[], struct configuration_spec * c * * Parameters : None * - * Returns : N/A + * Returns : string with that bottom * *********************************************************************/ -void end_proxy_args(struct configuration_spec * config) +char *end_proxy_args(struct configuration_spec * config) { char *b = NULL; char buf[BUFSIZ]; @@ -334,6 +350,10 @@ void end_proxy_args(struct configuration_spec * config) } /* In alphabetical order */ + SHOW_RCS(actions_h_rcs) + SHOW_RCS(actions_rcs) + SHOW_RCS(cgi_h_rcs) + SHOW_RCS(cgi_rcs) #ifdef __MINGW32__ SHOW_RCS(cygwin_h_rcs) #endif @@ -357,6 +377,8 @@ void end_proxy_args(struct configuration_spec * config) SHOW_RCS(killpopup_h_rcs) SHOW_RCS(killpopup_rcs) #endif /* def KILLPOPUPS */ + SHOW_RCS(list_h_rcs) + SHOW_RCS(list_rcs) SHOW_RCS(loadcfg_h_rcs) SHOW_RCS(loadcfg_rcs) SHOW_RCS(loaders_h_rcs) @@ -488,24 +510,13 @@ void end_proxy_args(struct configuration_spec * config) b = strsav(b, "
  • #define FAST_REDIRECTS - Enables intercepting remote script redirects.
  • \n"); #else /* ifndef FAST_REDIRECTS */ b = strsav(b, "
  • #undef FAST_REDIRECTS - Disables intercepting remote script redirects.
  • \n"); -#endif ndef /* FAST_REDIRECTS */ +#endif /* ndef FAST_REDIRECTS */ b = strsav(b, "\n
    \n"); - b = strsav(b, - "

    \n" - "The " BANNER " Proxy - \n" - "" HOME_PAGE_URL "

    \n" - "Copyright © 2001 the SourceForge IJBSWA team
    \n" - "Copyright © 1997 \n" "Junkbusters Corporation
    \n" - "Copying and distribution permitted under the " - "GNU General Public License.\n" - "
    " - "\n" - ); - config->proxy_args_trailer = b; + return b; }