xref: /original-bsd/sys/sys/un.h (revision c43e4352)
1 /*	un.h	6.1	83/07/29	*/
2 
3 /*
4  * Definitions for UNIX IPC domain.
5  */
6 struct	sockaddr_un {
7 	short	sun_family;		/* AF_UNIX */
8 	char	sun_path[109];		/* path name (gag) */
9 };
10 
11 #ifdef KERNEL
12 int	unp_discard();
13 #endif
14