summaryrefslogtreecommitdiff
path: root/source3/include/nameserv.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1996-06-10 03:38:08 +0000
committerAndrew Tridgell <tridge@samba.org>1996-06-10 03:38:08 +0000
commite2eac352b1c6534031ad89a5565d3668833a2bf1 (patch)
tree0a5c5929cb151c2e5528bf6b1cc13c4f84ddfaee /source3/include/nameserv.h
parent97c01f6114c3151ecb69d350620dedfc521e5ee1 (diff)
downloadsamba-e2eac352b1c6534031ad89a5565d3668833a2bf1.tar.gz
samba-e2eac352b1c6534031ad89a5565d3668833a2bf1.tar.bz2
samba-e2eac352b1c6534031ad89a5565d3668833a2bf1.zip
updates from Luke to rename "domains" more accurately to "subnets"
(This used to be commit 0a044c25abc363d8b202ff5d148259d624b92ea7)
Diffstat (limited to 'source3/include/nameserv.h')
-rw-r--r--source3/include/nameserv.h10
1 files changed, 6 insertions, 4 deletions
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 */