We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0b1ddb commit 9c69c75Copy full SHA for 9c69c75
src/p2p/rr_man.rs
@@ -7,6 +7,10 @@ use libp2p::{
7
StreamProtocol,
8
};
9
10
+// Used to manage the index of request-response protocols.
11
+// TODO: Implement logic to handle request-response behaviour directly
12
+// based on protocol name.
13
+// Note: This may require some map-like behaviour to mimic StreamMap
14
#[derive(Debug)]
15
pub struct Behaviour {
16
rr_list: IndexMap<StreamProtocol, usize>,
0 commit comments