-
Notifications
You must be signed in to change notification settings - Fork 961
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
core/muxing: Flatten StreamMuxer
interface to poll_{inbound,outbound,address_change,close}
#2724
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
fffa5ff
Introduce `StreamMuxerEvent::OutboundSubstream`
thomaseizinger e8630d7
Introduce `StreamMuxerEvent::map_outbound_substream`
thomaseizinger 7eeae1b
Remove "outbound" functions on `StreamMuxer` in favor of `OpenFlags`
thomaseizinger 66dc071
Remove `OutboundStreamId`
thomaseizinger f155e6b
Inline `Muxing` type into `Connection`
thomaseizinger 03861fc
Remove obvious comment on how `poll` functions work
thomaseizinger ed8f0b7
Fix benchmarks
thomaseizinger 3c3bed3
Fix intra-doc link
thomaseizinger 90b7ad6
Fix documentation of StreamMuxer
thomaseizinger 33c9491
Minor import and comment cleanup
thomaseizinger 546603c
Remove `StreamMuxerEvent` in favor of individual poll functions
thomaseizinger 68b4c0b
Fix mplex tests and benches
thomaseizinger 4a24307
Remove mentions of deleted event
thomaseizinger e742b8e
Update changelog
thomaseizinger 2348a4c
Remove now unused bitflags dependency
thomaseizinger 7695a80
Remove unused log dependency
thomaseizinger a086e61
Better `expect` message
thomaseizinger dd81ea0
Use correct function in benchmark
thomaseizinger f5cba3d
Merge branch 'master' into refactor/remove-poll-outbound
thomaseizinger 3143a63
Update changelog and version numbers
thomaseizinger bea8318
Add unreleased label
thomaseizinger 8bbdbfa
Add docs to `StreamMuxer`
thomaseizinger 9409250
Fix changelog of yamux and mplex
thomaseizinger 4f7bd45
Explicitly return result
thomaseizinger f20fd74
Add docs for poll loop in `Connection`
thomaseizinger 3f776ef
Fixup a few more changelogs and manifests
thomaseizinger File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-core" | |
edition = "2021" | ||
rust-version = "1.56.1" | ||
description = "Core traits and structs of libp2p" | ||
version = "0.34.0" | ||
version = "0.35.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I deleted this changelog entry because it is not released yet and it no longer makes any sense if the entire type is gone now!