Merge branch 'master' of git://localhost/acess2
[tpg/acess2.git] / Usermode / Libraries / libpsocket.so_src / include_exp / sys / un.h
1 /*
2  * Acess2 POSIX Sockets Emulation
3  * - By John Hodge (thePowersGang)
4  *
5  * sys/un.h
6  * - UNIX Domain Sockets
7  */
8 #ifndef _LIBPSOCKET__SYS__UN_H_
9 #define _LIBPSOCKET__SYS__UN_H_
10
11 #define _SUN_PATH_MAX   108
12
13 // POSIX Defined
14 struct sockaddr_un
15 {
16         sa_family_t     sun_family;
17         char    sun_path[_SUN_PATH_MAX];
18 };
19
20 #endif
21

UCC git Repository :: git.ucc.asn.au