Viewing: un.h
📄 un.h (Read Only) ⬅ To go back
#ifndef ULIBC_SYS_UN_H
#define ULIBC_SYS_UN_H

#include <sys/socket.h>

#define UNIX_PATH_MAX 108

struct sockaddr_un {
    sa_family_t sun_family;
    char        sun_path[UNIX_PATH_MAX];
};

#endif