diff options
author | Volker Lendecke <vl@samba.org> | 2011-06-02 14:12:06 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-06-12 17:07:48 +0200 |
commit | 0dfcf3ef78bb16d79644ee08f58d519e74ff0f0a (patch) | |
tree | 2917ab6a17b62a82da287b84135ef5e99f3d3fb6 /source3/include | |
parent | 396b646123c1aef81c644ae744e65c71b30067d0 (diff) | |
download | samba-0dfcf3ef78bb16d79644ee08f58d519e74ff0f0a.tar.gz samba-0dfcf3ef78bb16d79644ee08f58d519e74ff0f0a.tar.bz2 samba-0dfcf3ef78bb16d79644ee08f58d519e74ff0f0a.zip |
s3: Add resolve_wins_send/recv
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 815104881d..ad8ae994ff 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1052,6 +1052,13 @@ NTSTATUS name_resolve_bcast(const char *name, TALLOC_CTX *mem_ctx, struct sockaddr_storage **return_iplist, int *return_count); +struct tevent_req *resolve_wins_send(TALLOC_CTX *mem_ctx, + struct tevent_context *ev, + const char *name, + int name_type); +NTSTATUS resolve_wins_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, + struct sockaddr_storage **addrs, + int *num_addrs, uint8_t *flags); NTSTATUS resolve_wins(const char *name, int name_type, TALLOC_CTX *mem_ctx, |