diff options
author | Stefan Eissing <icing@apache.org> | 2021-04-20 14:16:05 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2021-04-20 14:16:05 +0200 |
commit | 8951949163612ad2f4ec936ac4a61154af0edce3 (patch) | |
tree | 80de0386c95cc48d3ea06a4f82606c5bded9aa10 /include/httpd.h | |
parent | Fix some typos (diff) | |
download | apache2-8951949163612ad2f4ec936ac4a61154af0edce3.tar.xz apache2-8951949163612ad2f4ec936ac4a61154af0edce3.zip |
core/ap_ssl_*: changes after review by rpluem
- removed no longer needed (char*) casts when looking
up ssl variables.
- move 'goto cleanup;' on separate source line
- fixed check for wrong optional function in ap_run_ssl_var_lookup
- remove ap_bytes_t again from httpd.h and passes now ocsp
identifier as separate const char* and apr_size_t. This
follows more how such data is passed in the rest of the
server.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1889009 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/httpd.h')
-rw-r--r-- | include/httpd.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/httpd.h b/include/httpd.h index 397c80b290..5e4c036d8a 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -830,8 +830,6 @@ typedef struct conn_slave_rec conn_slave_rec; typedef struct request_rec request_rec; /** A structure that represents the status of the current connection */ typedef struct conn_state_t conn_state_t; -/** A structure that represents a number of bytes */ -typedef struct ap_bytes_t ap_bytes_t; /* ### would be nice to not include this from httpd.h ... */ /* This comes after we have defined the request_rec type */ @@ -1485,15 +1483,6 @@ struct ap_loadavg_t { }; /** - * @struct ap_bytes_t - * @brief A structure to hold a number of bytes - */ -struct ap_bytes_t { - unsigned char *data; - apr_size_t len; -}; - -/** * Get the context_document_root for a request. This is a generalization of * the document root, which is too limited in the presence of mappers like * mod_userdir and mod_alias. The context_document_root is the directory |