xref: /haiku/headers/posix/sys/un.h (revision 8f813eeb9d455e58e647f355cd583d284e297059)
1 /*
2  * Copyright 2006, Haiku Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _SYS_UN_H
6 #define _SYS_UN_H
7 
8 
9 #include <sys/socket.h>
10 
11 
12 struct sockaddr_un {
13 	uint8_t		sun_len;
14 	uint8_t		sun_family;
15 	uint8_t		sun_path[128];
16 };
17 
18 #endif	/* _SYS_UN_H */
19