Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support start/stop fragment marker #813

Merged
merged 32 commits into from
Dec 5, 2024
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1f4cf1d
feat: support start/stop fragment marker
wyfo Nov 25, 2024
6837602
fix: fix test
wyfo Dec 4, 2024
ad94190
fix: typo
wyfo Dec 4, 2024
c5f50ac
fix: format
wyfo Dec 4, 2024
3736054
fix: fragment ext encoding
wyfo Dec 4, 2024
218019a
fix: rename start/stop marker to first/drop
wyfo Dec 4, 2024
0c5f62b
Update src/protocol/codec/transport.c
wyfo Dec 4, 2024
0f2a139
Update src/protocol/definitions/transport.c
wyfo Dec 4, 2024
c93e694
Update src/protocol/definitions/transport.c
wyfo Dec 4, 2024
8c55511
Update src/protocol/codec/transport.c
wyfo Dec 4, 2024
e997fc4
Update src/transport/unicast/rx.c
wyfo Dec 4, 2024
b42dca2
Update src/transport/unicast/rx.c
wyfo Dec 4, 2024
223d085
Update src/transport/multicast/rx.c
wyfo Dec 4, 2024
a05524d
Update src/protocol/definitions/transport.c
wyfo Dec 4, 2024
107ac1a
Update src/protocol/definitions/transport.c
wyfo Dec 4, 2024
bd89a76
Update src/protocol/codec/transport.c
wyfo Dec 4, 2024
645acc4
Update src/protocol/codec/transport.c
wyfo Dec 4, 2024
002a0e1
Update src/protocol/codec/transport.c
wyfo Dec 4, 2024
47d15e1
Update src/transport/multicast/rx.c
wyfo Dec 4, 2024
524b3df
Update src/transport/multicast/rx.c
wyfo Dec 4, 2024
daa56a0
Update src/transport/multicast/rx.c
wyfo Dec 4, 2024
1ba505b
Update src/transport/unicast/rx.c
wyfo Dec 4, 2024
1b681bb
Update src/transport/unicast/rx.c
wyfo Dec 4, 2024
5490645
Update src/transport/unicast/rx.c
wyfo Dec 4, 2024
1b36f8e
fix: apply PR feedbacks
wyfo Dec 4, 2024
bca36bd
fix: apply PR feedbacks
wyfo Dec 4, 2024
733a23d
fix: initializing all the fields is always a good idea
wyfo Dec 4, 2024
e73ce42
fix: add _patch field in copy functions
wyfo Dec 4, 2024
e55c499
fix: typo
wyfo Dec 4, 2024
6da6c45
fix: format
wyfo Dec 4, 2024
3fa9b5d
fix: reset dbuf instead of clear
wyfo Dec 4, 2024
9320775
fix: format
wyfo Dec 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/transport/multicast/rx.c
Co-authored-by: Alexander Bushnev <sashacmc@gmail.com>
wyfo and sashacmc authored Dec 4, 2024
commit daa56a0952ebdcee8fd64c5fbf4ebc09939fe326
2 changes: 1 addition & 1 deletion src/transport/multicast/rx.c
Original file line number Diff line number Diff line change
@@ -216,7 +216,7 @@ z_result_t _z_multicast_handle_transport_message(_z_transport_multicast_t *ztm,
t_msg->_body._fragment._sn);
entry->_sn_rx_sns._val._plain._best_effort = t_msg->_body._frame._sn;
dbuf = &entry->_dbuf_best_effort;
if (consecutive == false) {
if (!consecutive) {
_Z_DEBUG("Non-consecutive fragments received");
_z_wbuf_reset(dbuf);
break;