diff options
author | Volker Lendecke <vl@samba.org> | 2010-12-28 13:47:35 +0100 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2010-12-28 18:21:05 +0100 |
commit | 4622812a41eb5ce07dd8f74534217e858743883f (patch) | |
tree | 3a07c7d4971c9e11fe3a623311098baaa7a925e4 /source3/include | |
parent | 28d997a89056f144de6a7b95af0e54a044c5e5b3 (diff) | |
download | samba-4622812a41eb5ce07dd8f74534217e858743883f.tar.gz samba-4622812a41eb5ce07dd8f74534217e858743883f.tar.bz2 samba-4622812a41eb5ce07dd8f74534217e858743883f.zip |
s3: Make name_query return NTSTATUS
Also use talloc for the result
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Tue Dec 28 18:21:05 CET 2010 on sn-devel-104
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 8278ffbcd5..9b391ae767 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2712,12 +2712,14 @@ bool name_status_find(const char *q_name, const struct sockaddr_storage *to_ss, fstring name); int ip_service_compare(struct ip_service *ss1, struct ip_service *ss2); -struct sockaddr_storage *name_query(int fd, +NTSTATUS name_query(int fd, const char *name, int name_type, bool bcast, bool recurse, const struct sockaddr_storage *to_ss, + TALLOC_CTX *mem_ctx, + struct sockaddr_storage **addrs, int *count, int *flags, bool *timed_out); |