I tried evcon->ev.ev_timeout = tv but its giving me error: dereferencing pointer to incomplete type Previous message View by thread View by date Next message [Libevent-users] evhttp_connection_set_timeout granularity Ron Combs Re: [Libevent-users] evhttp_connection_set_timeout gra... Nick...
Also you may be interesting in that by default bufferevent (that internally used by http layer) will send data in 16k chunks, you can modify this usingbufferevent_set_max_single_writeand useevhttp_set_bevcbto create custombuffereventfor http connection, i.e.: ...