summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-10-29 04:58:48 +0000
committerAndrew Tridgell <tridge@samba.org>2003-10-29 04:58:48 +0000
commit059181a169e17da053b04553cfb7151985b56b32 (patch)
tree5543438860627e76dcc555e7da32b68611e9668e /source3/smbd
parent2e46c7648b7297345e1f8871a0acca75a21bbbc3 (diff)
downloadsamba-059181a169e17da053b04553cfb7151985b56b32.tar.gz
samba-059181a169e17da053b04553cfb7151985b56b32.tar.bz2
samba-059181a169e17da053b04553cfb7151985b56b32.zip
parameterise the listen backlog in smbd and make it larger by default. A backlog of 5 is way too small these days.
(This used to be commit bbb92d2b0ea6bc10c71bed62924bfc95c11172a5)
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c
index 8b890549ea..af39bcb757 100644
--- a/source3/smbd/server.c
+++ b/source3/smbd/server.c
@@ -250,7 +250,7 @@ static BOOL open_sockets_smbd(BOOL is_daemon, BOOL interactive, const char *smb_
set_socket_options(s,"SO_KEEPALIVE");
set_socket_options(s,user_socket_options);
- if (listen(s, 5) == -1) {
+ if (listen(s, SMBD_LISTEN_BACKLOG) == -1) {
DEBUG(0,("listen: %s\n",strerror(errno)));
close(s);
return False;
@@ -286,7 +286,7 @@ static BOOL open_sockets_smbd(BOOL is_daemon, BOOL interactive, const char *smb_
set_socket_options(s,"SO_KEEPALIVE");
set_socket_options(s,user_socket_options);
- if (listen(s, 5) == -1) {
+ if (listen(s, SMBD_LISTEN_BACKLOG) == -1) {
DEBUG(0,("open_sockets_smbd: listen: %s\n",
strerror(errno)));
close(s);