diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-08-22 06:32:03 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-08-22 06:32:03 +0000 |
commit | 9155889092ac9ff476d950a0c1b624ebad3cdad6 (patch) | |
tree | 1b65edac5a195405ee1af46967c5c3e9726aeb38 /source3/smbd | |
parent | cebbbffcae8d1fd1521b50010843b79959c08cef (diff) | |
download | samba-9155889092ac9ff476d950a0c1b624ebad3cdad6.tar.gz samba-9155889092ac9ff476d950a0c1b624ebad3cdad6.tar.xz samba-9155889092ac9ff476d950a0c1b624ebad3cdad6.zip |
- add timeouts to connect() for password server connections. This
makes multiple password servers practical.
(This used to be commit 5c3e8326cc45d3cbd076475e445ce461a2bf7560)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/password.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/password.c b/source3/smbd/password.c index a5f597682f6..fd3ff4fd179 100644 --- a/source3/smbd/password.c +++ b/source3/smbd/password.c @@ -1287,7 +1287,7 @@ BOOL server_cryptkey(char *buf) continue; } - password_client = open_socket_out(SOCK_STREAM, &dest_ip, port); + password_client = open_socket_out(SOCK_STREAM, &dest_ip, port, SHORT_CONNECT_TIMEOUT); if (password_client >= 0) { DEBUG(3,("connected to password server %s\n",p)); StrnCpy(pserver,p,sizeof(pserver)-1); |