diff options
| author | Brian Pane <brianp@apache.org> | 2005-09-12 00:29:10 +0000 |
|---|---|---|
| committer | Brian Pane <brianp@apache.org> | 2005-09-12 00:29:10 +0000 |
| commit | d1ff1de803525c3aeb17cf83f034eb5dfd4edfab (patch) | |
| tree | cb944d45cc53811a03159a1484bead9c4a463684 /include/httpd.h | |
| parent | 9c05049bff60ff9a72a15c488b1f684eaf4d0088 (diff) | |
| download | httpd-d1ff1de803525c3aeb17cf83f034eb5dfd4edfab.tar.gz | |
Added new connection states CONN_STATE_HANDLER and CONN_STATE_WRITE_COMPLETION.
Also, core_create_conn() now initializes the conn_state within the newly
created connection.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/async-dev@280221 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/httpd.h')
| -rw-r--r-- | include/httpd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/httpd.h b/include/httpd.h index 7f08b92d1d..0cb68df847 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -1074,6 +1074,8 @@ struct conn_rec { typedef enum { CONN_STATE_CHECK_REQUEST_LINE_READABLE, CONN_STATE_READ_REQUEST_LINE, + CONN_STATE_HANDLER, + CONN_STATE_WRITE_COMPLETION, CONN_STATE_LINGER, } conn_state_e; |
