summaryrefslogtreecommitdiff
path: root/server/mpm/mpmt_os2
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-11-12 23:49:08 +0000
committerRyan Bloom <rbb@apache.org>2001-11-12 23:49:08 +0000
commit0c05b625acb9f1128715da18e1b4929a67ac26cc (patch)
treed38baba73a72a6d149723ba5f70231ef0624300e /server/mpm/mpmt_os2
parent05c8ba57eb6267052d8b09c2ef4a04d5de69b945 (diff)
downloadhttpd-0c05b625acb9f1128715da18e1b4929a67ac26cc.tar.gz
Begin to abstract out the underlying transport layer.
The first step is to remove the socket from the conn_rec, the server now lives in a context that is passed to the core's input and output filters. This forces us to be very careful when adding calls that use the socket directly, because the socket isn't available in most locations. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91887 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm/mpmt_os2')
-rw-r--r--server/mpm/mpmt_os2/mpmt_os2_child.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm/mpmt_os2/mpmt_os2_child.c b/server/mpm/mpmt_os2/mpmt_os2_child.c
index 2694a75091..3f9a685635 100644
--- a/server/mpm/mpmt_os2/mpmt_os2_child.c
+++ b/server/mpm/mpmt_os2/mpmt_os2_child.c
@@ -407,7 +407,7 @@ static void worker_main(void *vpArg)
rc == 0 && rd.ulData != WORKTYPE_EXIT) {
pconn = worker_args->pconn;
ap_sock_disable_nagle(worker_args->conn_sd);
- current_conn = ap_new_connection(pconn, ap_server_conf, worker_args->conn_sd, conn_id);
+ current_conn = ap_run_create_connection(pconn, worker_args->conn_sd, conn_id);
if (current_conn) {
ap_process_connection(current_conn);