Add context for libcli_resolve.
[samba-svnmirror.git] / source / libcli / resolve / bcast.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    broadcast 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/resolve/resolve.h"
24 #include "system/network.h"
25 #include "lib/socket/netif.h"
26 #include "param/param.h"
27
28 /**
29   broadcast name resolution method - async send
30  */
31 struct composite_context *resolve_name_bcast_send(TALLOC_CTX *mem_ctx, 
32                                                   struct event_context *event_ctx,
33                                                   void *userdata,
34                                                   struct nbt_name *name)
35 {
36         int num_interfaces = iface_count(global_loadparm);
37         const char **address_list;
38         struct composite_context *c;
39         int i, count=0;
40
41         address_list = talloc_array(mem_ctx, const char *, num_interfaces+1);
42         if (address_list == NULL) return NULL;
43
44         for (i=0;i<num_interfaces;i++) {
45                 const char *bcast = iface_n_bcast(global_loadparm, i);
46                 if (bcast == NULL) continue;
47                 address_list[count] = talloc_strdup(address_list, bcast);
48                 if (address_list[count] == NULL) {
49                         talloc_free(address_list);
50                         return NULL;
51                 }
52                 count++;
53         }
54         address_list[count] = NULL;
55
56         c = resolve_name_nbtlist_send(mem_ctx, event_ctx, name, address_list, true, false);
57         talloc_free(address_list);
58
59         return c;       
60 }
61
62 /*
63   broadcast name resolution method - recv side
64  */
65 NTSTATUS resolve_name_bcast_recv(struct composite_context *c, 
66                                  TALLOC_CTX *mem_ctx, const char **reply_addr)
67 {
68         return resolve_name_nbtlist_recv(c, mem_ctx, reply_addr);
69 }
70
71 /*
72   broadcast name resolution method - sync call
73  */
74 NTSTATUS resolve_name_bcast(struct nbt_name *name, 
75                             TALLOC_CTX *mem_ctx,
76                             const char **reply_addr)
77 {
78         struct composite_context *c = resolve_name_bcast_send(mem_ctx, NULL, NULL, name);
79         return resolve_name_bcast_recv(c, mem_ctx, reply_addr);
80 }
81
82 bool resolve_context_add_bcast_method(struct resolve_context *ctx)
83 {
84         return resolve_context_add_method(ctx, resolve_name_bcast_send, resolve_name_bcast_recv,
85                                           NULL);
86 }