I am trying to set SCTP_MAX_BURST using the following code
struct sctp_assoc_value assocValue;
memset(&assocValue, 0, sizeof(assocValue));
assocValue.assoc_value = getMaxBurstValue();
setsockopt (fd, IPPROTO_SCTP, SCTP_MAX_BURST, &assocValue, sizeof (assocValue));
When I execute the code I get the following error: "No such file or directory"
Could anyone help me with the possible reason for the failure?