From 364f1240eb5ea7aa5d98a36207817df831167a98 Mon Sep 17 00:00:00 2001 From: oes Date: Tue, 11 Mar 2003 11:54:37 +0000 Subject: [PATCH] Introduced RC_FLAG_* flags for use in child process return code --- project.h | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/project.h b/project.h index e2c5b8c8..381bf4bd 100644 --- a/project.h +++ b/project.h @@ -1,7 +1,7 @@ #ifndef PROJECT_H_INCLUDED #define PROJECT_H_INCLUDED /** Version string. */ -#define PROJECT_H_VERSION "$Id: project.h,v 1.72.2.1 2002/08/10 11:25:18 oes Exp $" +#define PROJECT_H_VERSION "$Id: project.h,v 1.72.2.2 2002/11/28 18:15:44 oes Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/Attic/project.h,v $ @@ -37,6 +37,11 @@ * * Revisions : * $Log: project.h,v $ + * Revision 1.72.2.2 2002/11/28 18:15:44 oes + * Added flag to each cgi_dispatcher that allows or denies + * external linking and removed const qualifier from + * struct list_entry.str. + * * Revision 1.72.2.1 2002/08/10 11:25:18 oes * - Include config.h for access to config data * - Include depending on where they are @@ -979,6 +984,22 @@ struct url_actions #define CSP_FLAG_TOGGLED_ON 0x20 +/* + * Flags for use in return codes of child processes + */ + +/** + * Flag for process return code: Set if exiting porcess has been toggled + * during its lifetime. + */ +#define RC_FLAG_TOGGLED 0x10 + +/** + * Flag for process return code: Set if exiting porcess has blocked its + * request. + */ +#define RC_FLAG_BLOCKED 0x20 + /** * Maximum number of actions files. This limit is arbitrary - it's just used * to size an array. -- 2.49.0