aboutsummaryrefslogtreecommitdiff
path: root/src/rust/protover/ffi.rs
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2019-05-03 13:24:06 -0400
committerDavid Goulet <dgoulet@torproject.org>2019-05-03 13:56:36 -0400
commit07e4b09b5f27326a1aa58b5b2ed3c25ceb5a6db6 (patch)
tree8d1e878bc1f60e87a039e90cf7415c87f87070cd /src/rust/protover/ffi.rs
parent2aa441b88e089c9aa650f25dd1b109bf14bc451d (diff)
downloadtor-07e4b09b5f27326a1aa58b5b2ed3c25ceb5a6db6.tar.gz
tor-07e4b09b5f27326a1aa58b5b2ed3c25ceb5a6db6.zip
sendme: Add FlowCtrl protover value
See proposal 289 section 4.3 for more details. It describes the flow control protocol at the circuit and stream level. If there is no FlowCtrl protocol version, tor supports the unauthenticated flow control features from its supported Relay protocols. At this commit, relay will start advertising FlowCtrl=1 meaning they support authenticated SENDMEs v1. Closes #30363 Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/rust/protover/ffi.rs')
-rw-r--r--src/rust/protover/ffi.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rust/protover/ffi.rs b/src/rust/protover/ffi.rs
index 066b08eddb..14170d0353 100644
--- a/src/rust/protover/ffi.rs
+++ b/src/rust/protover/ffi.rs
@@ -31,6 +31,7 @@ fn translate_to_rust(c_proto: uint32_t) -> Result<Protocol, ProtoverError> {
8 => Ok(Protocol::Microdesc),
9 => Ok(Protocol::Cons),
10 => Ok(Protocol::Padding),
+ 11 => Ok(Protocol::FlowCtrl),
_ => Err(ProtoverError::UnknownProtocol),
}
}