What does the “s” mean in the structure?

2019-01-09 12:04发布

Here's a simple question. What's the meaning of the leading letter "s" in the sin_family, sin_port, sin_addr and sin_zero?

struct sockaddr_in {
    short int          sin_family;  // Address family, AF_INET
    unsigned short int sin_port;    // Port number
    struct in_addr     sin_addr;    // Internet address
    unsigned char      sin_zero[8]; // Same size as struct sockaddr
};

Thanks.

3条回答
等我变得足够好
2楼-- · 2019-01-09 12:47

sin is repeating the name of the sockaddr_in structure, i.e. Socket INternet.

查看更多
做自己的国王
3楼-- · 2019-01-09 12:48

This comes from Berkeley, back when LSD was still legal. So very obvious in their naming choices :/

All kidding aside, this dates back to very early K&R C where structure members didn't have their own namespace. Which required you to come up with distinct names for the structure members that wouldn't collide with identifiers in the global namespace. Painful. Prefixing the names with an abbreviation of the structure name was the common approach.

Thus "sockaddr_in" becomes "sin".

Note how enums still have this problem today, not untypically solved the same way.

查看更多
SAY GOODBYE
4楼-- · 2019-01-09 13:01

"sin" stands for "Socket INternet" in this context.

查看更多
登录 后发表回答