我试图了解IN_ADDR中的 S_un 。这是我的 IP 为 127.0.0.1 时的输出:
有关类型的信息:
S_un_b
An IPv4 address formatted as four u_chars.
S_un_w
An IPv4 address formatted as two u_shorts.
S_addr
An IPv4 address formatted as a u_long.
我不明白 S_un_w 和 S_addr 是如何构建的。S_un_b 是逻辑,我的 IP 地址中的每个八位字节都转换为无符号字符。但是 2 条未签名的短裤和未签名的长版如何?还是他们只是在这些变量中复制了 127001 ?