4.1cBSD/a/sys/h/domain.h

Compare this file to the similar file:
Show the results in this format:

/*	domain.h	5.2	82/08/01	*/

/*
 * Structure per communications domain.
 */
struct	domain {
	int	dom_family;		/* AF_xxx */
	char	*dom_name;
	struct	protosw *dom_protosw, *dom_protoswNPROTOSW;
	struct	domain *dom_next;
};

#ifdef KERNEL
struct	domain *domains;
#endif