diff options
author | Ryan Bloom <rbb@apache.org> | 2001-03-04 07:27:27 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-03-04 07:27:27 +0100 |
commit | 3eeeb76fb482bae7400eac7a4562fe8475756afd (patch) | |
tree | c5860377471fc106a22b6b3a0a6661403556106f /include/http_connection.h | |
parent | mention the changes to Apache for PR #6980 (diff) | |
download | apache2-3eeeb76fb482bae7400eac7a4562fe8475756afd.tar.xz apache2-3eeeb76fb482bae7400eac7a4562fe8475756afd.zip |
Move more code from the http module into the core server. This
is core code, basically the default handler, the default input
and output filters, and all of the core configuration directives.
All of this code is required in order for the server to work, with or
without HTTP. The server is closer to working without the HTTP
module, although there is still more to do.
I tried to fix Windows, but somebody should probably make sure I did
it correctly.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88449 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_connection.h')
-rw-r--r-- | include/http_connection.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/http_connection.h b/include/http_connection.h index 8580b99211..4636744008 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -86,21 +86,6 @@ conn_rec *ap_new_connection(apr_pool_t *p, server_rec *server, */ AP_CORE_DECLARE(void) ap_process_connection(conn_rec *); -/** - * The http pre-protocol handler. This makes sets up Apache to serve http - * requests - * @param c The connection on which the request is read - * @return OK or DECLINED - */ -int ap_pre_http_connection(conn_rec *); - -/** - * The http protocol handler. This makes Apache serve http requests - * @param c The connection on which the request is read - * @return OK or DECLINED - */ -AP_CORE_DECLARE_NONSTD(int) ap_process_http_connection(conn_rec *); - AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c); /** |