-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
move go-conn-security-multistream here #1460
Conversation
Make sure to wait until we're done writing before returning. The close should interrupt this process but we should still wait. might be related to ipfs/kubo#6197
block while writing
chore(dep): update
* implement simultaneous open Co-authored-by: aarshkshah1992 <[email protected]>
fix go vet and staticcheck
* use the new SecureTransport and SecureMuxer interfaces * restore sanity check for the remote peer's ID, add log statement
…/conn-security-multistream
@@ -3,13 +3,13 @@ package config | |||
import ( | |||
"fmt" | |||
|
|||
csms "github.com/libp2p/go-libp2p/p2p/net/conn-security-multistream" |
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.
Feel free to rename to something sane.
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.
Maybe even have a multistream package? Or an upgraders package? Not sure.
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.
We already have an upgrader. Can't think of something sensible for this package right now. Let's rename this later.
Part of #1187.