0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-03 22:28:52 +02:00

Reverting last commit

This commit is contained in:
Valery Yatsko 2008-04-02 13:52:05 +04:00
parent 5d1efcb253
commit 59323b9668

View file

@ -177,7 +177,7 @@ inetport(struct Listener *listener)
get_listener_name(listener), errno); get_listener_name(listener), errno);
return 0; return 0;
} }
else if((rb_get_maxconnections() - 10) < rb_get_fd(F)) /* XXX this is kinda bogus*/ else if((maxconnections - 10) < rb_get_fd(F)) /* XXX this is kinda bogus*/
{ {
report_error("no more connections left for listener %s:%s", report_error("no more connections left for listener %s:%s",
get_listener_name(listener), get_listener_name(listener),
@ -463,7 +463,7 @@ accept_precallback(rb_fde_t *F, struct sockaddr *addr, rb_socklen_t addrlen, voi
return 0; return 0;
} }
if((rb_get_maxconnections() - 10) < rb_get_fd(F)) /* XXX this is kinda bogus */ if((maxconnections - 10) < rb_get_fd(F)) /* XXX this is kinda bogus */
{ {
++ServerStats.is_ref; ++ServerStats.is_ref;
/* /*