BSD 4_2 development
[unix-history] / usr / src / sys / h / domain.h
CommitLineData
59703a43
C
1/* domain.h 6.1 83/07/29 */
2
3/*
4 * Structure per communications domain.
5 */
6struct domain {
7 int dom_family; /* AF_xxx */
8 char *dom_name;
9 struct protosw *dom_protosw, *dom_protoswNPROTOSW;
10 struct domain *dom_next;
11};
12
13#ifdef KERNEL
14struct domain *domains;
15#endif