Skip to content

Commit

Permalink
Change usrsctp initialization function to not open raw sockets
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyotsu authored and niyatim23 committed Sep 13, 2023
1 parent 4778318 commit e0d4ce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/source/Sctp/Sctp.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ STATUS initSctpSession()
{
STATUS retStatus = STATUS_SUCCESS;

usrsctp_init(0, &onSctpOutboundPacket, NULL);
usrsctp_init_nothreads(0, &onSctpOutboundPacket, NULL);

// Disable Explicit Congestion Notification
usrsctp_sysctl_set_sctp_ecn_enable(0);
Expand Down

0 comments on commit e0d4ce6

Please sign in to comment.