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

Refactor transport trait #610

Merged
merged 24 commits into from
Dec 14, 2023
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
598653b
Use Link type in some parts of transport _unicast trait
yellowhatter Dec 1, 2023
3e881d6
WIP on transport refactoring
yellowhatter Dec 5, 2023
1ca94b0
Refactored transport
yellowhatter Dec 8, 2023
1aa7232
Merge commit 'db235af1b45d7668ddbde4d1700e29321f5ddf9b'
yellowhatter Dec 8, 2023
442faff
fix clippy
yellowhatter Dec 8, 2023
61007b2
fix tests, fix lowlatency add_link implementation
yellowhatter Dec 8, 2023
e0f5f26
Fix port conflict in tests
yellowhatter Dec 8, 2023
0a1a82f
[skip ci]
yellowhatter Dec 11, 2023
0c4f184
[skip ci]
yellowhatter Dec 11, 2023
b35071f
- work with naming
yellowhatter Dec 11, 2023
95ecee3
try to fix busy loop that seems to break the tests
yellowhatter Dec 11, 2023
eb350b9
avoid deadlock from routing tables
yellowhatter Dec 12, 2023
e10e482
Fix test isolation bug!
yellowhatter Dec 12, 2023
ebbe34b
cargo fmt ;)
yellowhatter Dec 12, 2023
fd339e5
disallow SharedMemoryManager open already existing memory segment
yellowhatter Dec 12, 2023
7cbaa5b
Merge commit '0fd53fe30c655bbf390fe86179bb2dcf74183538'
yellowhatter Dec 12, 2023
deb74f5
This test didn't compile when 'transport_compression' feature is disa…
yellowhatter Dec 12, 2023
abd2720
Merge commit 'deb74f531bb0b2185fd5e8b446fab43b876ecbee'
yellowhatter Dec 12, 2023
2049922
Partially fix performance regression
yellowhatter Dec 13, 2023
6410a9d
Reduce size of TransportLinkUnicastRx
yellowhatter Dec 13, 2023
da5395b
[skip ci] some brush-up
yellowhatter Dec 13, 2023
c187a98
- optimize SN validation a little
yellowhatter Dec 14, 2023
3137426
some brush-up
yellowhatter Dec 14, 2023
4608ce1
Revert "some brush-up"
yellowhatter Dec 14, 2023
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
2 changes: 1 addition & 1 deletion io/zenoh-transport/src/unicast/universal/rx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ impl TransportUnicastUniversal {
.decode()
.map_err(|_| zerror!("{}: decoding error", link))?;

log::trace!("Received: {:?}", msg);
// log::trace!("Received: {:?}", msg);
yellowhatter marked this conversation as resolved.
Show resolved Hide resolved

#[cfg(feature = "stats")]
{
Expand Down
Loading