Skip to content
Snippets Groups Projects
Commit 457d0e16 authored by hoelscher's avatar hoelscher
Browse files

add support for socketoption sctp_disable_fragments

parent 377691b0
No related branches found
No related tags found
No related merge requests found
......@@ -87,6 +87,7 @@ struct int_symbol platform_symbols_table[] = {
{ SCTP_AUTOCLOSE, "SCTP_AUTOCLOSE" },
{ SCTP_PRIMARY_ADDR, "SCTP_PRIMARY_ADDR" },
{ SCTP_ADAPTATION_LAYER, "SCTP_ADAPTATION_LAYER" },
{ SCTP_DISABLE_FRAGMENTS, "SCTP_DISABLE_FRAGMENTS" },
{ SCTP_MAXSEG, "SCTP_MAXSEG" },
{ SCTP_AUTH_ACTIVE_KEY, "SCTP_AUTH_ACTIVE_KEY" },
{ SCTP_DELAYED_SACK, "SCTP_DELAYED_SACK" },
......
......@@ -10,8 +10,8 @@
+0 getsockopt(3, SOL_SOCKET, SO_ERROR, [0], [4]) = 0
+0 getsockopt(3, SOL_SOCKET, SCTP_DISABLE_FRAGMENTS, [0], [4]) = 0
+0 setsockopt(3, SOL_SOCKET, SCTP_DISABLE_FRAGMENTS, [1], 4) = 0
+0 getsockopt(3, SOL_SOCKET, SCTP_DISABLE_FRAGMENTS, [1], [4]) = 0
+0 getsockopt(3, IPPROTO_SCTP, SCTP_DISABLE_FRAGMENTS, [0], [4]) = 0
+0 setsockopt(3, IPPROTO_SCTP, SCTP_DISABLE_FRAGMENTS, [1], 4) = 0
+0 getsockopt(3, IPPROTO_SCTP, SCTP_DISABLE_FRAGMENTS, [1], [4]) = 0
+0 close(3) = 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment