Changed _FILENAME_H to FILENAME_H_INCLUDED.
authorjongfoster <jongfoster@users.sourceforge.net>
Sun, 29 Jul 2001 19:01:11 +0000 (19:01 +0000)
committerjongfoster <jongfoster@users.sourceforge.net>
Sun, 29 Jul 2001 19:01:11 +0000 (19:01 +0000)
Added forward declarations for needed structures.

actions.h
filters.h
jbsockets.h

index d71d8c3..e73022e 100644 (file)
--- 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 $
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/actions.h,v $
@@ -35,6 +35,9 @@
  *
  * Revisions   :
  *    $Log: actions.h,v $
  *
  * 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.
+ *
  *
  *********************************************************************/
 \f
  *
  *********************************************************************/
 \f
@@ -44,6 +47,11 @@ extern "C" {
 #endif
 
 
 #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, 
 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
 
 } /* extern "C" */
 #endif
 
-#endif /* ndef _ERRLOG_H */
+#endif /* ndef ACTIONS_H_INCLUDED */
 
 /*
   Local Variables:
 
 /*
   Local Variables:
index ec22e36..27a00f6 100644 (file)
--- 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 $
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/filters.h,v $
  *
  * Revisions   :
  *    $Log: filters.h,v $
  *
  * 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
  *    Revision 1.10  2001/06/29 13:29:01  oes
  *    Cleaned up and updated to reflect the changesin
  *    filters.c
 extern "C" {
 #endif
 
 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
  */
 /*
  * ACL checking
  */
@@ -225,7 +240,7 @@ extern const char filters_h_rcs[];
 } /* extern "C" */
 #endif
 
 } /* extern "C" */
 #endif
 
-#endif /* ndef _FILTERS_H */
+#endif /* ndef FILTERS_H_INCLUDED */
 
 /*
   Local Variables:
 
 /*
   Local Variables:
index 7c1ee58..196ccbb 100644 (file)
@@ -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 $
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/jbsockets.h,v $
@@ -37,6 +37,9 @@
  *
  * Revisions   :
  *    $Log: jbsockets.h,v $
  *
  * 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
  *
  *    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
 
 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);
 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
 
 } /* extern "C" */
 #endif
 
-#endif /* ndef _JBSOCKETS_H */
+#endif /* ndef JBSOCKETS_H_INCLUDED */
 
 /*
   Local Variables:
 
 /*
   Local Variables: