diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-03-25 09:24:53 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:59:11 -0500 |
commit | 767685e9fd836d9ea3082855e7d9204ca66f047f (patch) | |
tree | 198a4abc1b49323273da0808ed7bf3a5d2d535a3 /source4/nbt_server/wins | |
parent | 3451ba729dad31e7a435908970d58965f08465f7 (diff) | |
download | samba-767685e9fd836d9ea3082855e7d9204ca66f047f.tar.gz samba-767685e9fd836d9ea3082855e7d9204ca66f047f.tar.bz2 samba-767685e9fd836d9ea3082855e7d9204ca66f047f.zip |
r14709: allways use the unicast socket of the interface, when reply to DGRAM
requests...
this fixes a bug where I thought windows would try KRB5 via broadcast...
metze
(This used to be commit 0e7b224294ce6a3b5bbdc284181ab496a5a0c058)
Diffstat (limited to 'source4/nbt_server/wins')
-rw-r--r-- | source4/nbt_server/wins/winswack.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/nbt_server/wins/winswack.c b/source4/nbt_server/wins/winswack.c index 2da73fa9cf..3bdf682459 100644 --- a/source4/nbt_server/wins/winswack.c +++ b/source4/nbt_server/wins/winswack.c @@ -49,7 +49,7 @@ static void wins_challenge_handler(struct nbt_name_request *req) state->query.in.dest_addr = state->io->in.addresses[state->current_address]; - iface = nbtd_find_interface(state->io->in.nbtd_server, state->query.in.dest_addr); + iface = nbtd_find_request_iface(state->io->in.nbtd_server, state->query.in.dest_addr, True); if (!iface) { composite_error(ctx, NT_STATUS_INTERNAL_ERROR); return; @@ -111,7 +111,7 @@ struct composite_context *wins_challenge_send(TALLOC_CTX *mem_ctx, struct wins_c state->query.in.retries = 2; ZERO_STRUCT(state->query.out); - iface = nbtd_find_interface(state->io->in.nbtd_server, state->query.in.dest_addr); + iface = nbtd_find_request_iface(state->io->in.nbtd_server, state->query.in.dest_addr, True); if (!iface) { goto failed; } @@ -165,7 +165,7 @@ static void wins_release_demand_handler(struct nbt_name_request *req) state->release.in.timeout = (state->addresses_left > 1 ? 2 : 1); state->release.in.retries = (state->addresses_left > 1 ? 0 : 2); - iface = nbtd_find_interface(state->io->in.nbtd_server, state->release.in.dest_addr); + iface = nbtd_find_request_iface(state->io->in.nbtd_server, state->release.in.dest_addr, True); if (!iface) { composite_error(ctx, NT_STATUS_INTERNAL_ERROR); return; @@ -226,7 +226,7 @@ static struct composite_context *wins_release_demand_send(TALLOC_CTX *mem_ctx, s state->release.in.retries = (state->addresses_left > 1 ? 0 : 2); ZERO_STRUCT(state->release.out); - iface = nbtd_find_interface(state->io->in.nbtd_server, state->release.in.dest_addr); + iface = nbtd_find_request_iface(state->io->in.nbtd_server, state->release.in.dest_addr, True); if (!iface) { goto failed; } |