diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-10-21 23:31:41 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-10-23 08:49:30 +0200 |
commit | 79c6572256a01279d9e4f0b436d334f4fd739866 (patch) | |
tree | 65afeb97733c86269e8c351c7cf8aacf330ffe5c /source4/libcli/wrepl | |
parent | d2c653629cdc3df8549c6faabfcdbe3045cd013c (diff) | |
download | samba-79c6572256a01279d9e4f0b436d334f4fd739866.tar.gz samba-79c6572256a01279d9e4f0b436d334f4fd739866.tar.bz2 samba-79c6572256a01279d9e4f0b436d334f4fd739866.zip |
tsocket: let tstream_inet_tcp_connect_recv() optionally return the used local address
tstream_inet_tcp_connect_send() usually only gets no local port number
and it may use the wildcard address '0.0.0.0' or '::'.
tstream_inet_tcp_connect_recv() provides the used local address and port
which are used on the wire.
metze
Diffstat (limited to 'source4/libcli/wrepl')
-rw-r--r-- | source4/libcli/wrepl/winsrepl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/wrepl/winsrepl.c b/source4/libcli/wrepl/winsrepl.c index 83da21700c..842a35175e 100644 --- a/source4/libcli/wrepl/winsrepl.c +++ b/source4/libcli/wrepl/winsrepl.c @@ -248,7 +248,7 @@ static void wrepl_connect_done(struct tevent_req *subreq) int sys_errno; ret = tstream_inet_tcp_connect_recv(subreq, &sys_errno, - state, &state->stream); + state, &state->stream, NULL); if (ret != 0) { NTSTATUS status = map_nt_error_from_unix(sys_errno); tevent_req_nterror(req, status); |