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