increased stroke socket backlog to 10

This commit is contained in:
Martin Willi 2008-07-30 14:17:05 +00:00
parent f0a8fa25ba
commit 19ad10b5d3
1 changed files with 1 additions and 1 deletions

View File

@ -554,7 +554,7 @@ static bool open_socket(private_stroke_socket_t *this)
strerror(errno));
}
if (listen(this->socket, 0) < 0)
if (listen(this->socket, 10) < 0)
{
DBG1(DBG_CFG, "could not listen on stroke socket: %s", strerror(errno));
close(this->socket);