diff options
author | Volker Lendecke <vl@samba.org> | 2011-04-17 20:16:07 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-04-25 09:50:32 +0200 |
commit | 23a6af46c84cd9b738af403d80c5187d858eac03 (patch) | |
tree | 22dc5bca73c8bf14b5e7be550e65a8d9de3520c8 /source3/include | |
parent | f7bc84409a7a6736ec2cf1110dd7200a954e3b7e (diff) | |
download | samba-23a6af46c84cd9b738af403d80c5187d858eac03.tar.gz samba-23a6af46c84cd9b738af403d80c5187d858eac03.tar.bz2 samba-23a6af46c84cd9b738af403d80c5187d858eac03.zip |
s3: Add a 10-second timeout for the 445 or netbios connection to a DC
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 36f0235b02..69672cfdf5 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2837,7 +2837,7 @@ NTSTATUS smbsock_connect_recv(struct tevent_req *req, int *sock, NTSTATUS smbsock_connect(const struct sockaddr_storage *addr, uint16_t port, const char *called_name, int called_type, const char *calling_name, int calling_type, - int *pfd, uint16_t *ret_port); + int *pfd, uint16_t *ret_port, int sec_timeout); struct tevent_req *smbsock_any_connect_send(TALLOC_CTX *mem_ctx, struct tevent_context *ev, @@ -2856,6 +2856,7 @@ NTSTATUS smbsock_any_connect(const struct sockaddr_storage *addrs, int *calling_types, size_t num_addrs, uint16_t port, + int sec_timeout, int *pfd, size_t *chosen_index, uint16_t *chosen_port); |