Skip to content
Snippets Groups Projects
Commit 3f8db1c9 authored by Michael Tüxen's avatar Michael Tüxen
Browse files

Fix generation of I-DATA chunks.

parent 723c3493
No related branches found
No related tags found
No related merge requests found
......@@ -1154,17 +1154,18 @@ sctp_i_data_chunk_new(s64 flgs, s64 len, s64 tsn, s64 sid, s64 res, s64 mid,
chunk->mid = htonl((u32)mid);
}
if (ppid == -1) {
chunk->field.ppid = htonl(0);
flags |= FLAG_I_DATA_CHUNK_PPID_NOCHECK;
} else {
chunk->field.ppid = htonl((u32)ppid);
}
if (fsn == -1) {
chunk->field.fsn = htonl(0);
flags |= FLAG_I_DATA_CHUNK_FSN_NOCHECK;
} else {
chunk->field.fsn = htonl((u32)fsn);
}
if (ppid == -1 && fsn == -1) {
chunk->field.ppid = htonl(0);
}
memset(chunk->data, 0,
length + padding_length - sizeof(struct sctp_i_data_chunk));
return sctp_chunk_list_item_new((struct sctp_chunk *)chunk,
......
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