Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 261 Bytes

chapter-15.md

File metadata and controls

10 lines (9 loc) · 261 Bytes

Unix 域协议

struct sockaddr_un
{
    uint8_t sun_len;           // 有些实现中可能没有这个成员
    sa_family_t sun_family;    // AF_LOCAL
    char sun_path[104];        // null-terminated pathname. 有些实现中该值可能为108
};