summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2021-09-24 10:09:23 +0000
committerYann Ylavic <ylavic@apache.org>2021-09-24 10:09:23 +0000
commit63da5b997fcb9b8c56d9b52851b254252105f3b6 (patch)
treea113209e8f84557a707e3baee629e126d4d4a363
parentdf3a6135551e061a9dc27cde56c7fec25805a21d (diff)
downloadhttpd-63da5b997fcb9b8c56d9b52851b254252105f3b6.tar.gz
mod_proxy: typedef struct proxy_tunnel_conn proxy_tunnel_conn_t.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1893593 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/ap_mmn.h3
-rw-r--r--modules/proxy/mod_proxy.h5
-rw-r--r--modules/proxy/proxy_util.c16
3 files changed, 13 insertions, 11 deletions
diff --git a/include/ap_mmn.h b/include/ap_mmn.h
index 5b21e78d10..0d88c3f5e5 100644
--- a/include/ap_mmn.h
+++ b/include/ap_mmn.h
@@ -681,6 +681,7 @@
* is being shut down.
* 20210531.4 (2.5.1-dev) Add ap_create_connection
* 20210531.5 (2.5.1-dev) Add ap_pre_connection
+ * 20210531.6 (2.5.1-dev) Add proxy_tunnel_conn_t
*/
#define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */
@@ -688,7 +689,7 @@
#ifndef MODULE_MAGIC_NUMBER_MAJOR
#define MODULE_MAGIC_NUMBER_MAJOR 20210531
#endif
-#define MODULE_MAGIC_NUMBER_MINOR 5 /* 0...n */
+#define MODULE_MAGIC_NUMBER_MINOR 6 /* 0...n */
/**
* Determine if the server's current MODULE_MAGIC_NUMBER is at least a
diff --git a/modules/proxy/mod_proxy.h b/modules/proxy/mod_proxy.h
index 0b02d6f0c8..e9ff6e91b2 100644
--- a/modules/proxy/mod_proxy.h
+++ b/modules/proxy/mod_proxy.h
@@ -1335,14 +1335,15 @@ PROXY_DECLARE(int) ap_proxy_pass_brigade(apr_bucket_alloc_t *bucket_alloc,
int flush);
struct proxy_tunnel_conn; /* opaque */
+typedef struct proxy_tunnel_conn proxy_tunnel_conn_t;
typedef struct {
request_rec *r;
const char *scheme;
apr_pollset_t *pollset;
apr_array_header_t *pfds;
apr_interval_time_t timeout;
- struct proxy_tunnel_conn *client,
- *origin;
+ proxy_tunnel_conn_t *client,
+ *origin;
apr_size_t read_buf_size;
int replied;
} proxy_tunnel_rec;
diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c
index 7584f22765..0e9837a1a9 100644
--- a/modules/proxy/proxy_util.c
+++ b/modules/proxy/proxy_util.c
@@ -4665,8 +4665,8 @@ PROXY_DECLARE(apr_status_t) ap_proxy_tunnel_create(proxy_tunnel_rec **ptunnel,
tunnel->r = r;
tunnel->scheme = apr_pstrdup(r->pool, scheme);
- tunnel->client = apr_pcalloc(r->pool, sizeof(struct proxy_tunnel_conn));
- tunnel->origin = apr_pcalloc(r->pool, sizeof(struct proxy_tunnel_conn));
+ tunnel->client = apr_pcalloc(r->pool, sizeof(proxy_tunnel_conn_t));
+ tunnel->origin = apr_pcalloc(r->pool, sizeof(proxy_tunnel_conn_t));
tunnel->pfds = apr_array_make(r->pool, 2, sizeof(apr_pollfd_t));
tunnel->read_buf_size = ap_get_read_buf_size(r);
tunnel->client->other = tunnel->origin;
@@ -4774,9 +4774,9 @@ static void del_pollset(apr_pollset_t *pollset, apr_pollfd_t *pfd,
}
static int proxy_tunnel_forward(proxy_tunnel_rec *tunnel,
- struct proxy_tunnel_conn *in)
+ proxy_tunnel_conn_t *in)
{
- struct proxy_tunnel_conn *out = in->other;
+ proxy_tunnel_conn_t *out = in->other;
apr_status_t rv;
apr_off_t sent = 0;
@@ -4833,8 +4833,8 @@ PROXY_DECLARE(int) ap_proxy_tunnel_run(proxy_tunnel_rec *tunnel)
int rc = OK;
request_rec *r = tunnel->r;
apr_pollset_t *pollset = tunnel->pollset;
- struct proxy_tunnel_conn *client = tunnel->client,
- *origin = tunnel->origin;
+ proxy_tunnel_conn_t *client = tunnel->client,
+ *origin = tunnel->origin;
apr_interval_time_t timeout = tunnel->timeout >= 0 ? tunnel->timeout : -1;
const char *scheme = tunnel->scheme;
apr_status_t rv;
@@ -4880,7 +4880,7 @@ PROXY_DECLARE(int) ap_proxy_tunnel_run(proxy_tunnel_rec *tunnel)
for (i = 0; i < nresults; i++) {
const apr_pollfd_t *pfd = &results[i];
- struct proxy_tunnel_conn *tc = pfd->client_data;
+ proxy_tunnel_conn_t *tc = pfd->client_data;
ap_log_rerror(APLOG_MARK, APLOG_TRACE8, 0, r,
"proxy: %s: #%i: %s: %hx/%hx", scheme, i,
@@ -4914,7 +4914,7 @@ PROXY_DECLARE(int) ap_proxy_tunnel_run(proxy_tunnel_rec *tunnel)
&& ((pfd->rtnevents & APR_POLLOUT)
|| !(tc->pfd->reqevents & APR_POLLIN)
|| !(pfd->rtnevents & (APR_POLLIN | APR_POLLHUP)))) {
- struct proxy_tunnel_conn *out = tc, *in = tc->other;
+ proxy_tunnel_conn_t *out = tc, *in = tc->other;
ap_log_rerror(APLOG_MARK, APLOG_TRACE8, 0, r,
"proxy: %s: %s output ready",