如何设置关联的SCTP_MAX_BURST



我正在尝试使用以下代码设置SCTP_MAX_BURST

struct sctp_assoc_value assocValue;
memset(&assocValue, 0, sizeof(assocValue));
assocValue.assoc_value = getMaxBurstValue();
setsockopt (fd, IPPROTO_SCTP, SCTP_MAX_BURST, &assocValue, sizeof (assocValue));

当我执行代码时,出现以下错误:"没有这样的文件或目录"

谁能帮我解决失败的可能原因?

你提到的文本("没有这样的文件..")是针对 ENOENT, 2,它没有被列为我可以访问的任何 Linux 系统上 setsockopt 的回报。

在我的Redhat 5系统上,我得到了ENOPROTOOPT(errno 92),因为内核没有为2.6.18的sctp实现该套接字选项。

相关内容

  • 没有找到相关文章

最新更新