From 392c9fcc66dfdd5e57dc75f24592eb4077a58cf4 Mon Sep 17 00:00:00 2001 From: Todd Sharp <41924046+recursivecodes@users.noreply.github.com> Date: Wed, 7 Aug 2024 08:27:48 -0400 Subject: [PATCH] Update sctp.c SctpDataChunk has no member si, should be sid on line 143. --- src/sctp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sctp.c b/src/sctp.c index 1a8a472..2b78c4f 100644 --- a/src/sctp.c +++ b/src/sctp.c @@ -140,7 +140,7 @@ int sctp_outgoing_data(Sctp *sctp, char *buf, size_t len, SctpDataPpid ppid, uin chunk->type = SCTP_DATA; chunk->iube = 0x06; - chunk->si = htons(0); + chunk->sid = htons(0); chunk->sqn = htons(sqn++); chunk->ppid = htonl(ppid);