1 /* 2 * Copyright 2006-2012 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 char sun_path[126]; 16 }; 17 18 #endif /* _SYS_UN_H */ 19