次のコードを使用して 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));
コードを実行すると、次のエラーが表示されます:「そのようなファイルまたはディレクトリはありません」
失敗の考えられる理由を教えてくれる人はいますか?