xref: /original-bsd/sys/sys/un.h (revision 43bfbc1c)
1 /*
2  * Copyright (c) 1982 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  *
6  *	@(#)un.h	6.3 (Berkeley) 06/08/85
7  */
8 
9 /*
10  * Definitions for UNIX IPC domain.
11  */
12 struct	sockaddr_un {
13 	short	sun_family;		/* AF_UNIX */
14 	char	sun_path[108];		/* path name (gag) */
15 };
16 
17 #ifdef KERNEL
18 int	unp_discard();
19 #endif
20