IP 标头有帮助吗?

发布于 2024-10-30 22:09:15 字数 469 浏览 0 评论 0原文

为什么在 struct ip 中定义为

#if __BYTE_ORDER == __LITTLE_ENDIAN
    unsigned int ip_hl:4;       /* header length */
    unsigned int ip_v:4;        /* version */
#endif
#if __BYTE_ORDER == __BIG_ENDIAN
    unsigned int ip_v:4;        /* version */
    unsigned int ip_hl:4;       /* header length */
#endif

Little endian 和 big endianess 只影响多字节值。为什么我们将ip_hl存储在ip_v之前,ip_hl不应该在ip_v之后传输?

Why in struct ip is defined like

#if __BYTE_ORDER == __LITTLE_ENDIAN
    unsigned int ip_hl:4;       /* header length */
    unsigned int ip_v:4;        /* version */
#endif
#if __BYTE_ORDER == __BIG_ENDIAN
    unsigned int ip_v:4;        /* version */
    unsigned int ip_hl:4;       /* header length */
#endif

Little endian and big endianess only affects multibyte values. Why are we storing ip_hl before ip_v, shouldn't ip_hl be transmitted after ip_v?

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

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

发布评论

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

评论(1

心的憧憬 2024-11-06 22:09:15

Endianess 还会影响编译器将位域字段(末尾的“:4”意味着它只有 4 位值)放入结果结构的字节中的方式。对于大尾数法,这些位从最高有效位开始填充。对于小尾数法,这些位从最低有效位开始填充。

Endianess also affects the way the compiler puts bit-field fields (the ":4" at the end means it's only 4 bits worth of the value) within bytes of the resulting structure. For big-endian, the bits populate from the most-significant. For little-endian, the bits populate from the least-significant.

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