From e2eac352b1c6534031ad89a5565d3668833a2bf1 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 10 Jun 1996 03:38:08 +0000 Subject: updates from Luke to rename "domains" more accurately to "subnets" (This used to be commit 0a044c25abc363d8b202ff5d148259d624b92ea7) --- source3/include/nameserv.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'source3/include') diff --git a/source3/include/nameserv.h b/source3/include/nameserv.h index 25934c23f7..8882948ff4 100644 --- a/source3/include/nameserv.h +++ b/source3/include/nameserv.h @@ -144,17 +144,19 @@ struct work_record uint32 ElectionCriterion; }; -/* a domain structure. it contains a list of workgroups */ -struct domain_record +/* a subnet structure. it contains a list of workgroups */ +struct subnet_record { - struct domain_record *next; - struct domain_record *prev; + struct subnet_record *next; + struct subnet_record *prev; struct work_record *workgrouplist; struct in_addr bcast_ip; struct in_addr mask_ip; struct in_addr myip; + + BOOL my_interface; }; /* a resource record */ -- cgit