From c76640b5c29390ca3a11eba6614bf51a92e7a2ca Mon Sep 17 00:00:00 2001 From: Felix Nawothnig Date: Tue, 1 Jun 2010 04:45:55 +0200 Subject: [PATCH] Don't disable reading from the HTTP connection after sending the request to be notified of connection-close in time --- http.c | 1 - 1 file changed, 1 deletion(-) diff --git a/http.c b/http.c index d3d82fe7..e6b5825c 100644 --- a/http.c +++ b/http.c @@ -342,7 +342,6 @@ evhttp_write_buffer(struct evhttp_connection *evcon, evcon->cb = cb; evcon->cb_arg = arg; - bufferevent_disable(evcon->bufev, EV_READ); bufferevent_enable(evcon->bufev, EV_WRITE); }