gpt4 book ai didi

c - 什么是 HOPOPT 协议(protocol)以及 socket() 是如何工作的?

转载 作者:太空宇宙 更新时间:2023-11-04 10:15:02 28 4
gpt4 key购买 nike

我正在弄乱 C 中的套接字,这个协议(protocol)继续出现,我找不到任何关于它的信息,那么它有什么用呢? HOPOPT和IP有什么区别?

我也不明白为什么 socket() 函数的最后一个参数应该为 0。根据手册页:

The protocol specifies a particular protocol to be used with the socket. Normally only a single protocol exists to support a particular socket type within a given protocol family, in which case protocol can be specified as 0. However, it is possible that many protocols may exist, in which case a particular protocol must be specified in this manner. The protocol number to use is specific to the “communication domain” in which communication is to take place; see protocols(5). See getprotoent(3) on how to map protocol name strings to protocol numbers.

据我所知,将最后一个参数设置为 0 将使标准库决定使用哪种协议(protocol),但在这种情况下会使用 0 以外的数字吗?

最佳答案

HOPOPT 是 Hop-by-Hop IPv6 extension header 的首字母缩写词.它是一个允许向 IPv6 数据包添加更多选项的 header 。 IPv6 数据包包含此 header 是正常的。

socket() 是 BSD 和其他系统(Linux 等)提供的用于创建新套接字的系统调用,它是网络连接的内部表示。创建新套接字时,必须指定所需的协议(protocol):TCP、UDP 等,它们可能会跨越 IPv4、IPv6 等。

您引用的段落解释了每种套接字类型可能存在一种或多种协议(protocol)。

如果只有一个,protocol 参数必须为零。例如,SOCK_STREAM 套接字仅由 TCP 实现:

int sk = socket(AF_INET, SOCK_STREAM, 0);

如果存在更多协议(protocol),则您必须特别指定要使用的协议(protocol)。例如SOCK_SEQPACKET类型可以用SCTP协议(protocol)实现:

int sk = socket(AF_INET, SOCK_SEQPACKET, IPPROTO_SCTP);

所以,总而言之:

  • 如果要创建套接字,请选择要使用的协议(protocol),例如基于 IPv4 的 TCP。
  • HOPOPT 在 IPv6 数据包中是完全正常的。如果您看到它出现在您的踪迹中,因为您创建了一个 IPv6 套接字(使用 AF_INET6),则没有问题。

关于c - 什么是 HOPOPT 协议(protocol)以及 socket() 是如何工作的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46804125/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com