summaryrefslogtreecommitdiff
path: root/include/http_core.h
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2020-12-14 18:08:49 +0000
committerYann Ylavic <ylavic@apache.org>2020-12-14 18:08:49 +0000
commit18fb718292215c3de4d33bb3e42c7eb0917be9fa (patch)
tree9e4b65dffe4d86b004b29e2cffafbfae5499e5d2 /include/http_core.h
parentd3f5ef3a0876cf63afa593054cd8e98fb26651f1 (diff)
downloadhttpd-18fb718292215c3de4d33bb3e42c7eb0917be9fa.tar.gz
core: axe struct core_net_rec.
It was only used internally (by the core filters), and it's public API was redundant with conn_config_t. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1884431 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_core.h')
-rw-r--r--include/http_core.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/http_core.h b/include/http_core.h
index 17a2c50f1a..8610c98742 100644
--- a/include/http_core.h
+++ b/include/http_core.h
@@ -795,20 +795,6 @@ apr_status_t ap_core_output_filter(ap_filter_t *f, apr_bucket_brigade *b);
AP_DECLARE(const char*) ap_get_server_protocol(server_rec* s);
AP_DECLARE(void) ap_set_server_protocol(server_rec* s, const char* proto);
-typedef struct core_output_filter_ctx core_output_filter_ctx_t;
-typedef struct core_filter_ctx core_ctx_t;
-
-typedef struct core_net_rec {
- /** Connection to the client */
- apr_socket_t *client_socket;
-
- /** connection record */
- conn_rec *c;
-
- core_output_filter_ctx_t *out_ctx;
- core_ctx_t *in_ctx;
-} core_net_rec;
-
/**
* Insert the network bucket into the core input filter's input brigade.
* This hook is intended for MPMs or protocol modules that need to do special