r12608: Remove some unused #include lines.
[jelmer/samba4-debian.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 2 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, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24
25 /*
26   broadcast name resolution method - async send
27  */
28 struct composite_context *resolve_name_bcast_send(struct nbt_name *name, 
29                                                  struct event_context *event_ctx)
30 {
31         int num_interfaces = iface_count();
32         const char **address_list;
33         struct composite_context *c;
34         int i;
35
36         address_list = talloc_array(NULL, const char *, num_interfaces+1);
37         if (address_list == NULL) return NULL;
38
39         for (i=0;i<num_interfaces;i++) {
40                 address_list[i] = talloc_strdup(address_list, iface_n_bcast(i));
41                 if (address_list[i] == NULL) {
42                         talloc_free(address_list);
43                         return NULL;
44                 }
45         }
46         address_list[i] = NULL;
47
48         c = resolve_name_nbtlist_send(name, event_ctx, address_list, True, False);
49         talloc_free(address_list);
50
51         return c;       
52 }
53
54 /*
55   broadcast name resolution method - recv side
56  */
57 NTSTATUS resolve_name_bcast_recv(struct composite_context *c, 
58                                  TALLOC_CTX *mem_ctx, const char **reply_addr)
59 {
60         return resolve_name_nbtlist_recv(c, mem_ctx, reply_addr);
61 }
62
63 /*
64   broadcast name resolution method - sync call
65  */
66 NTSTATUS resolve_name_bcast(struct nbt_name *name, 
67                             TALLOC_CTX *mem_ctx,
68                             const char **reply_addr)
69 {
70         struct composite_context *c = resolve_name_bcast_send(name, NULL);
71         return resolve_name_bcast_recv(c, mem_ctx, reply_addr);
72 }
73