X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=loaders.h;h=30be6394d2bcbceb11b8c927623eacdcd11f5ba4;hp=0e796bb79878f4bf732bd5e886d2a7b61e2e4c8b;hb=edda49532e448bdbb18242bbfe39c797384a4b76;hpb=72081f829de368392d04076728f8c991178c0080 diff --git a/loaders.h b/loaders.h index 0e796bb7..30be6394 100644 --- a/loaders.h +++ b/loaders.h @@ -1,9 +1,9 @@ #ifndef LOADERS_H_INCLUDED #define LOADERS_H_INCLUDED -#define LOADERS_H_VERSION "$Id: loaders.h,v 1.19 2002/03/26 22:29:55 swa Exp $" +#define LOADERS_H_VERSION "$Id: loaders.h,v 1.22 2007/06/01 14:12:38 fabiankeil Exp $" /********************************************************************* * - * File : $Source: /cvsroot/ijbswa/current/Attic/loaders.h,v $ + * File : $Source: /cvsroot/ijbswa/current/loaders.h,v $ * * Purpose : Functions to load and unload the various * configuration files. Also contains code to manage @@ -37,6 +37,13 @@ * * Revisions : * $Log: loaders.h,v $ + * Revision 1.22 2007/06/01 14:12:38 fabiankeil + * Add unload_forward_spec() in preparation for forward-override{}. + * + * Revision 1.21 2006/07/18 14:48:46 david__schmidt + * Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch) + * with what was really the latest development (the v_3_0_branch branch) + * * Revision 1.19 2002/03/26 22:29:55 swa * we have a new homepage! * @@ -202,8 +209,8 @@ extern jb_err simple_read_line(FILE *fp, char **dest, int *newline); extern short int MustReload; -extern int load_actions_file(struct client_state *csp); -extern int load_re_filterfile(struct client_state *csp); +extern int load_action_files(struct client_state *csp); +extern int load_re_filterfiles(struct client_state *csp); #ifdef FEATURE_TRUST extern int load_trustfile(struct client_state *csp); @@ -216,6 +223,7 @@ void unload_current_trust_file(void); void unload_current_re_filterfile(void); #endif /* FEATURE_GRACEFUL_TERMINATION */ +void unload_forward_spec(struct forward_spec *fwd); extern void add_loader(int (*loader)(struct client_state *), struct configuration_spec * config);