理解结构体 sockaddr
struct sockaddr {
unsigned short sa_family; // address family, AF_xxx
char sa_data[14]; // 14 bytes of protocol address
};
在这个结构中,sa_family
所描述的地址族的具体含义是什么?
这是否意味着像 TCP/UDP 这样的协议有“地址”?嗯,我认为协议可以是标识号而不是地址。
无论如何,如果是的话,那么他们的家庭是根据什么分开的呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
地址的格式和大小通常是特定于协议的。
sockaddr
用作一组地址结构的基础,其作用类似于可区分联合,请参阅 Beej 网络指南。您通常会查看sa_family
,然后转换为相应地址族的特定地址结构。TCP 和 UDP 本身没有特定的地址,而 IP 级别对于 IPv4 和 IPv6 有不同大小的地址。
另请参阅:
The format and size of the address is usually protocol specific.
sockaddr
is used as the base of a set of address structures that act like a discriminated union, see the Beej guide to networking. You generally look at thesa_family
and then cast to the appropriate address family's specific address structure.TCP and UDP do not have addresses specific to them as such, rather the IP level has different sizes of address for IPv4 and IPv6.
See also:
我在尝试在 C/C++ 中复制 jnetpcap getHardwareAddress() 方法时发现了这一点。当 sa_family 为 17(0x11,AF_PACKET)时,MAC 地址包含在字节 10-15 中。
I found this out when trying to duplicate the jnetpcap getHardwareAddress() method in C/C++. The MAC address is contained, when sa_family is 17 (0x11, AF_PACKET), in bytes 10-15.