我正在尝试使用以下代码设置 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));
当我执行代码时,出现以下错误:“没有这样的文件或目录”
谁能帮我解释失败的可能原因?