f7bfdc340500a417004d44ed4c1a98db81212617
[jelmer/samba4-debian.git] / source / libcli / resolve / wins.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    wins name resolution module
5
6    Copyright (C) Andrew Tridgell 2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include "libcli/nbt/libnbt.h"
24 #include "libcli/resolve/resolve.h"
25
26 /*
27   wins name resolution method - async send
28  */
29 struct composite_context *resolve_name_wins_send(
30                                 TALLOC_CTX *mem_ctx, 
31                                 struct event_context *event_ctx,
32                                 struct nbt_name *name)
33 {
34         const char **address_list = lp_wins_server_list();
35         if (address_list == NULL) return NULL;
36         return resolve_name_nbtlist_send(mem_ctx, event_ctx, name, address_list, False, True);
37 }
38
39 /*
40   wins name resolution method - recv side
41  */
42 NTSTATUS resolve_name_wins_recv(struct composite_context *c, 
43                                 TALLOC_CTX *mem_ctx, const char **reply_addr)
44 {
45         return resolve_name_nbtlist_recv(c, mem_ctx, reply_addr);
46 }
47
48 /*
49   wins name resolution method - sync call
50  */
51 NTSTATUS resolve_name_wins(struct nbt_name *name, 
52                             TALLOC_CTX *mem_ctx,
53                             const char **reply_addr)
54 {
55         struct composite_context *c = resolve_name_wins_send(mem_ctx, NULL, name);
56         return resolve_name_wins_recv(c, mem_ctx, reply_addr);
57 }
58