xref: /original-bsd/sys/sys/domain.h (revision 62734ea8)
1 /*	domain.h	5.2	82/08/01	*/
2 
3 /*
4  * Structure per communications domain.
5  */
6 struct	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
14 struct	domain *domains;
15 #endif
16