理解结构体 sockaddr

发布于 2024-12-04 15:43:02 字数 331 浏览 0 评论 0 原文

struct sockaddr {
    unsigned short sa_family;   // address family, AF_xxx
    char           sa_data[14]; // 14 bytes of protocol address
};

在这个结构中,sa_family 所描述的地址族的具体含义是什么?

这是否意味着像 TCP/UDP 这样的协议有“地址”?嗯,我认为协议可以是标识号而不是地址。

无论如何,如果是的话,那么他们的家庭是根据什么分开的呢?

struct sockaddr {
    unsigned short sa_family;   // address family, AF_xxx
    char           sa_data[14]; // 14 bytes of protocol address
};

In this structure what exactly is the meaning address family depicted by sa_family?

Does it mean that protocols like TCP/UDP have "addresses"? Well, the protocols can be identification numbers not addresses, I think.

Anyway, if yes, then on what basis have their families been divided?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萧瑟寒风 2024-12-11 15:43:03

地址的格式和大小通常是特定于协议的。

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 the sa_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:

人间☆小暴躁 2024-12-11 15:43:03

我在尝试在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文