and note CHANGES so far to proxy
Submitted by: mturk
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104565
13f79535-47bb-0310-9956-
ffa450edef68
[Remove entries to the current 2.0 section below, when backported]
+ *) mod_proxy.c and proxy_util.c: Enable compiling on 2.0-HEAD
+ (for backwards compatibility):
+ Avoids mod_ssl.h (not included in 2.0-HEAD) and
+ use apr_socket_create_ex for 0.9.x
+ [Mladen Turk]
+
+ *) Added proxy_ajp.c module for proxy support to ajp:// backends.
+ [Jean Frederic Clere]
+
*) SECURITY: CAN-2004-0748 (cve.mitre.org)
mod_ssl: Fix a potential infinite loop. PR 29964. [Joe Orton]
#include "mod_core.h"
#include "apr_optional.h"
+
+#if (MODULE_MAGIC_NUMBER_MAJOR > 20020903)
#include "mod_ssl.h"
+#else
+APR_DECLARE_OPTIONAL_FN(int, ssl_proxy_enable, (conn_rec *));
+APR_DECLARE_OPTIONAL_FN(int, ssl_engine_disable, (conn_rec *));
+#endif
#ifndef MAX
#define MAX(x,y) ((x) >= (y) ? (x) : (y))
util_ldap.so 0x6FAD0000 0x00010000
mod_auth_ldap.so 0x6FAC0000 0x00010000
mod_ident.so 0x6FAB0000 0x00010000
+mod_proxy_ajp.so 0x6FAA0000 0x00010000