diff options
author | Volker Lendecke <vl@samba.org> | 2011-06-12 14:07:22 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-06-12 17:07:48 +0200 |
commit | 396b646123c1aef81c644ae744e65c71b30067d0 (patch) | |
tree | 77da893973426d6971998dedfeae16af85c2ba01 /source3/include | |
parent | 12c3c355966ba7c2da101219ae993fd0ef633026 (diff) | |
download | samba-396b646123c1aef81c644ae744e65c71b30067d0.tar.gz samba-396b646123c1aef81c644ae744e65c71b30067d0.tar.bz2 samba-396b646123c1aef81c644ae744e65c71b30067d0.zip |
s3: Add wins_server_tag_ips()
For a given tag, return the list of all wins servers
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 4a19f74d4c..815104881d 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -913,6 +913,8 @@ unsigned wins_srv_count(void); char **wins_srv_tags(void); void wins_srv_tags_free(char **list); struct in_addr wins_srv_ip_tag(const char *tag, struct in_addr src_ip); +bool wins_server_tag_ips(const char *tag, TALLOC_CTX *mem_ctx, + struct in_addr **pservers, int *pnum_servers); unsigned wins_srv_count_tag(const char *tag); /* The following definitions come from libsmb/clispnego.c */ |