mirror of
https://github.com/cuberite/libevent.git
synced 2025-09-10 04:50:37 -04:00
fix a typo in setting the global event base; reported by lance
svn:r953
This commit is contained in:
parent
ffb3966ec2
commit
4fa4a56253
@ -129,6 +129,7 @@ Changes in current version:
|
|||||||
o Only bind the socket on connect when a local address has been provided; reported by Alejo Sanchez
|
o Only bind the socket on connect when a local address has been provided; reported by Alejo Sanchez
|
||||||
o Allow setting of local port for evhttp connections to support millions of connections from a single system; from Richard Jones.
|
o Allow setting of local port for evhttp connections to support millions of connections from a single system; from Richard Jones.
|
||||||
o Clear the timer cache when leaving the event loop; reported by Robin Haberkorn
|
o Clear the timer cache when leaving the event loop; reported by Robin Haberkorn
|
||||||
|
o Fix a typo in setting the global event base; reported by lance.
|
||||||
|
|
||||||
Changes in 1.4.0:
|
Changes in 1.4.0:
|
||||||
o allow \r or \n individually to separate HTTP headers instead of the standard "\r\n"; from Charles Kerr.
|
o allow \r or \n individually to separate HTTP headers instead of the standard "\r\n"; from Charles Kerr.
|
||||||
|
2
event.c
2
event.c
@ -698,7 +698,7 @@ event_base_loop(struct event_base *base, int flags)
|
|||||||
/* clear time cache */
|
/* clear time cache */
|
||||||
base->tv_cache.tv_sec = 0;
|
base->tv_cache.tv_sec = 0;
|
||||||
|
|
||||||
if (&base->sig.ev_signal_added)
|
if (base->sig.ev_signal_added)
|
||||||
evsignal_base = base;
|
evsignal_base = base;
|
||||||
done = 0;
|
done = 0;
|
||||||
while (!done) {
|
while (!done) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user