From 2a1116713cb4dfdcc837e87f111886b1c4360923 Mon Sep 17 00:00:00 2001 From: jongfoster Date: Sun, 29 Jul 2001 19:01:11 +0000 Subject: [PATCH] Changed _FILENAME_H to FILENAME_H_INCLUDED. Added forward declarations for needed structures. --- actions.h | 16 ++++++++++++---- filters.h | 23 +++++++++++++++++++---- jbsockets.h | 13 +++++++++---- 3 files changed, 40 insertions(+), 12 deletions(-) diff --git a/actions.h b/actions.h index d71d8c34..e73022e5 100644 --- a/actions.h +++ b/actions.h @@ -1,6 +1,6 @@ -#ifndef _ACTIONS_H -#define _ACTIONS_H -#define ACTIONS_H_VERSION "$Id: actions.h,v ??? $" +#ifndef ACTIONS_H_INCLUDED +#define ACTIONS_H_INCLUDED +#define ACTIONS_H_VERSION "$Id: actions.h,v 1.1 2001/05/31 21:16:46 jongfoster Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/actions.h,v $ @@ -35,6 +35,9 @@ * * Revisions : * $Log: actions.h,v $ + * Revision 1.1 2001/05/31 21:16:46 jongfoster + * Moved functions to process the action list into this new file. + * * *********************************************************************/ @@ -44,6 +47,11 @@ extern "C" { #endif +struct action_spec; +struct current_action_spec; +struct client_state; + + extern void merge_actions (struct action_spec *dest, const struct action_spec *src); extern void copy_action (struct action_spec *dest, @@ -70,7 +78,7 @@ extern const char actions_h_rcs[]; } /* extern "C" */ #endif -#endif /* ndef _ERRLOG_H */ +#endif /* ndef ACTIONS_H_INCLUDED */ /* Local Variables: diff --git a/filters.h b/filters.h index ec22e365..27a00f61 100644 --- a/filters.h +++ b/filters.h @@ -1,6 +1,6 @@ -#ifndef _FILTERS_H -#define _FILTERS_H -#define FILTERS_H_VERSION "$Id: filters.h,v 1.10 2001/06/29 13:29:01 oes Exp $" +#ifndef FILTERS_H_INCLUDED +#define FILTERS_H_INCLUDED +#define FILTERS_H_VERSION "$Id: filters.h,v 1.11 2001/07/13 14:00:18 oes Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/filters.h,v $ @@ -40,6 +40,11 @@ * * Revisions : * $Log: filters.h,v $ + * Revision 1.11 2001/07/13 14:00:18 oes + * - Introduced gif_deanimate_response + * - Renamed re_process_buffer to pcrs_filter_response + * - Removed all #ifdef PCRS + * * Revision 1.10 2001/06/29 13:29:01 oes * Cleaned up and updated to reflect the changesin * filters.c @@ -166,6 +171,16 @@ extern "C" { #endif + +struct access_control_addr; +struct client_state; +struct http_request; +struct http_response; +struct current_action_spec; +struct url_actions; +struct url_spec; + + /* * ACL checking */ @@ -225,7 +240,7 @@ extern const char filters_h_rcs[]; } /* extern "C" */ #endif -#endif /* ndef _FILTERS_H */ +#endif /* ndef FILTERS_H_INCLUDED */ /* Local Variables: diff --git a/jbsockets.h b/jbsockets.h index 7c1ee588..196ccbb0 100644 --- a/jbsockets.h +++ b/jbsockets.h @@ -1,6 +1,6 @@ -#ifndef _JBSOCKETS_H -#define _JBSOCKETS_H -#define JBSOCKETS_H_VERSION "$Id: jbsockets.h,v 1.1.1.1 2001/05/15 13:58:54 oes Exp $" +#ifndef JBSOCKETS_H_INCLUDED +#define JBSOCKETS_H_INCLUDED +#define JBSOCKETS_H_VERSION "$Id: jbsockets.h,v 1.2 2001/06/07 23:06:09 jongfoster Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jbsockets.h,v $ @@ -37,6 +37,9 @@ * * Revisions : * $Log: jbsockets.h,v $ + * Revision 1.2 2001/06/07 23:06:09 jongfoster + * The host parameter to connect_to() is now const. + * * Revision 1.1.1.1 2001/05/15 13:58:54 oes * Initial import of version 2.9.3 source tree * @@ -48,6 +51,8 @@ extern "C" { #endif +struct client_state; + extern int connect_to(const char *host, int portnum, struct client_state *csp); extern int write_socket(int fd, const char *buf, int n); extern int read_socket(int fd, char *buf, int n); @@ -66,7 +71,7 @@ extern const char jbsockets_h_rcs[]; } /* extern "C" */ #endif -#endif /* ndef _JBSOCKETS_H */ +#endif /* ndef JBSOCKETS_H_INCLUDED */ /* Local Variables: -- 2.39.2