r4891: - added a generic resolve_name() async interface in libcli/resolve/,
[kamenim/samba.git] / source4 / libcli / resolve / resolve.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    general name resolution interface
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 #include "libcli/raw/libcliraw.h"
25 #include "libcli/composite/composite.h"
26
27 /*
28   general name resolution - async send
29  */
30 struct smbcli_composite *resolve_name_send(struct nbt_name *name, struct event_context *event_ctx)
31 {
32         return resolve_name_bcast_send(name, event_ctx);
33 }
34
35 /*
36   general name resolution method - recv side
37  */
38 NTSTATUS resolve_name_recv(struct smbcli_composite *c, 
39                            TALLOC_CTX *mem_ctx, const char **reply_addr)
40 {
41         return resolve_name_bcast_recv(c, mem_ctx, reply_addr);
42 }
43
44 /*
45   general name resolution - sync call
46  */
47 NTSTATUS resolve_name(struct nbt_name *name, TALLOC_CTX *mem_ctx, const char **reply_addr)
48 {
49         struct smbcli_composite *c = resolve_name_send(name, NULL);
50         return resolve_name_recv(c, mem_ctx, reply_addr);
51 }