mturk 2004/09/06 23:50:53 Modified: ajp/ajplib/include ajp.h Log: Sync with httpd-2.0 tree. Implement REQ_ATTRIBUTE using request rec environment table, so we can use standard SetEnv directive for that. The ajp specific attributes has to be prefixed using 'AJP_', and are passed withouth that prefix to the backend. Added SSL custom indicators. They can be set using SetEnv directive, so we don't need an extra one like the JkEnvVar is in the mod_jk. Revision Changes Path 1.30 +6 -0 jakarta-tomcat-connectors/ajp/ajplib/include/ajp.h Index: ajp.h =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/ajp/ajplib/include/ajp.h,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- ajp.h 2 Aug 2004 16:35:59 -0000 1.29 +++ ajp.h 7 Sep 2004 06:50:53 -0000 1.30 @@ -47,6 +47,12 @@ #define AJP13_DEF_PORT 8009 #endif +/* The following environment variables match mod_ssl! */ +#define AJP13_HTTPS_INDICATOR "HTTPS" +#define AJP13_SSL_CLIENT_CERT_INDICATOR "SSL_CLIENT_CERT" +#define AJP13_SSL_CIPHER_INDICATOR "SSL_CIPHER" +#define AJP13_SSL_SESSION_INDICATOR "SSL_SESSION_ID" +#define AJP13_SSL_KEY_SIZE_INDICATOR "SSL_CIPHER_USEKEYSIZE" #if APR_CHARSET_EBCDIC
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]