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

Fix syntax of ECNE and CWR chunks.

parent f70a83a5
No related branches found
No related tags found
No related merge requests found
......@@ -1262,13 +1262,13 @@ sctp_cookie_ack_chunk_spec
}
sctp_ecne_chunk_spec
: ECNE '[' opt_flags opt_tsn ']' {
$$ = sctp_ecne_chunk_new($3, $4);
: ECNE '[' opt_flags ',' opt_tsn ']' {
$$ = sctp_ecne_chunk_new($3, $5);
}
sctp_cwr_chunk_spec
: CWR '[' opt_flags opt_tsn ']' {
$$ = sctp_cwr_chunk_new($3, $4);
: CWR '[' opt_flags ',' opt_tsn ']' {
$$ = sctp_cwr_chunk_new($3, $5);
}
sctp_shutdown_complete_chunk_spec
......
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