1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Add function to add those hosts who have added msbrowse (domain master browsers)

(This used to be commit 3fd96a4754)
This commit is contained in:
Steve French 2001-11-07 23:01:44 +00:00
parent 823ab98ae3
commit 2113e2ba08

View File

@ -1176,3 +1176,11 @@ BOOL get_dc_list(BOOL pdc_only, char *group, struct in_addr **ip_list, int *coun
{
return internal_resolve_name(group, pdc_only ? 0x1B : 0x1C, ip_list, count);
}
/********************************************************
Get the IP address list of the Domain Master Browsers
********************************************************/
BOOL get_dmb_list(struct in_addr **ip_list, int *count)
{
return internal_resolve_name( MSBROWSE, 0x1, ip_list, count);
}