Idiomatic way to create transport without authentication #3907
-
Is there a way to do something like this? let transport = tcp::async_io::Transport::default()
.upgrade(Version::V1Lazy)
.multiplex(yamux::Config::default())
.boxed(); |
Beta Was this translation helpful? Give feedback.
Answered by
thomaseizinger
May 10, 2023
Replies: 1 comment 5 replies
-
There is https://github.com/libp2p/rust-libp2p/tree/master/transports/plaintext. Don't run this in production though. |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
oskin1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is https://github.com/libp2p/rust-libp2p/tree/master/transports/plaintext. Don't run this in production though.