From: Evgeny Kotkov Date: Tue, 11 Jul 2017 21:13:26 +0000 (+0000) Subject: mpm_winnt: Remove unused values of the io_state_e enum. X-Git-Tag: 2.5.0-alpha~288 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c5a7310abed490f6a2f1f197a7038d4bf37a543;p=thirdparty%2Fapache%2Fhttpd.git mpm_winnt: Remove unused values of the io_state_e enum. Submitted By: Ivan Zhakov git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1801657 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index 41180bfaf80..42125af2ed5 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -106,9 +106,7 @@ typedef struct winnt_conn_ctx_t_s { typedef enum { IOCP_CONNECTION_ACCEPTED = 1, - IOCP_WAIT_FOR_RECEIVE = 2, - IOCP_WAIT_FOR_TRANSMITFILE = 3, - IOCP_SHUTDOWN = 4 + IOCP_SHUTDOWN = 2 } io_state_e; static apr_pool_t *pchild;