15 lines
211 B
C
15 lines
211 B
C
/* sys/un.h: The sockaddr_un structure for AF_UNIX sockets. */
|
|
|
|
#ifndef _SYS_UN_H
|
|
#define _SYS_UN_H
|
|
|
|
#include <bits/socket.h>
|
|
|
|
struct sockaddr_un
|
|
{
|
|
sa_family_t sun_family;
|
|
char sun_path[108];
|
|
};
|
|
|
|
#endif
|