diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-06-10 03:38:08 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-06-10 03:38:08 +0000 |
commit | e2eac352b1c6534031ad89a5565d3668833a2bf1 (patch) | |
tree | 0a5c5929cb151c2e5528bf6b1cc13c4f84ddfaee /source3/include | |
parent | 97c01f6114c3151ecb69d350620dedfc521e5ee1 (diff) | |
download | samba-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')
-rw-r--r-- | source3/include/nameserv.h | 10 |
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 */ |