summaryrefslogtreecommitdiff
path: root/include/ap_mmn.h
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2021-06-08 14:37:44 +0000
committerStefan Eissing <icing@apache.org>2021-06-08 14:37:44 +0000
commita4f45f275b7d90240f2ebd28834585e04deae165 (patch)
tree08d33b1a84441649381e9ddeb003dbdcbe676804 /include/ap_mmn.h
parenta360cd342f25b05185dc7bd201d6cb964d433575 (diff)
downloadhttpd-a4f45f275b7d90240f2ebd28834585e04deae165.tar.gz
*) core/mod_proxy/mod_ssl:
Adding `outgoing` flag to conn_rec, indicating a connection is initiated by the server to somewhere, in contrast to incoming connections from clients. Adding 'ap_ssl_bind_outgoing()` function that marks a connection as outgoing and is used by mod_proxy instead of the previous optional function `ssl_engine_set`. This enables other SSL module to secure proxy connections. The optional functions `ssl_engine_set`, `ssl_engine_disable` and `ssl_proxy_enable` are now provided by the core to have backward compatibility with non-httpd modules that might use them. mod_ssl itself no longer registers these functions, but keeps them in its header for backward compatibility. The core provided optional function wrap any registered function like it was done for `ssl_is_ssl`. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1890605 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_mmn.h')
-rw-r--r--include/ap_mmn.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ap_mmn.h b/include/ap_mmn.h
index 5e2634be37..eccfce1e96 100644
--- a/include/ap_mmn.h
+++ b/include/ap_mmn.h
@@ -672,12 +672,13 @@
* 20210506.0 (2.5.1-dev) Add ap_proxy_tunnel_conn_get_read() and
* ap_proxy_tunnel_conn_get_transferred() change
* ap_proxy_transfer_between_connections() sent to apr_off_t *.
+ * 20210531.0 (2.5.1-dev) add conn_rec->outgoing and ap_ssl_bind_outgoing()
*/
#define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */
#ifndef MODULE_MAGIC_NUMBER_MAJOR
-#define MODULE_MAGIC_NUMBER_MAJOR 20210506
+#define MODULE_MAGIC_NUMBER_MAJOR 20210531
#endif
#define MODULE_MAGIC_NUMBER_MINOR 0 /* 0...n */