diff options
author | teor <teor@riseup.net> | 2020-05-11 11:08:20 +1000 |
---|---|---|
committer | teor <teor@riseup.net> | 2020-05-11 11:08:20 +1000 |
commit | e787e521af990a76c6e42cd1a8d3f46f41561f24 (patch) | |
tree | 90b05ee1e73d586e13417efe63e834fd74e2f13a /src/rust | |
parent | 492c512af4a4f9ee143b945296fd1c61fc68dba1 (diff) | |
download | tor-e787e521af990a76c6e42cd1a8d3f46f41561f24.tar.gz tor-e787e521af990a76c6e42cd1a8d3f46f41561f24.zip |
protover: Declare support for Relay=3
Declare support for the new Relay=3 IPv6 extend protocol,
in C and Rust.
Part of 33226.
Diffstat (limited to 'src/rust')
-rw-r--r-- | src/rust/protover/protover.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rust/protover/protover.rs b/src/rust/protover/protover.rs index 6d2ef33eec..3a7379d890 100644 --- a/src/rust/protover/protover.rs +++ b/src/rust/protover/protover.rs @@ -169,7 +169,7 @@ pub(crate) fn get_supported_protocols_cstr() -> &'static CStr { LinkAuth=3 \ Microdesc=1-2 \ Padding=2 \ - Relay=1-2" + Relay=1-3" ) } else { cstr!( @@ -184,7 +184,7 @@ pub(crate) fn get_supported_protocols_cstr() -> &'static CStr { LinkAuth=1,3 \ Microdesc=1-2 \ Padding=2 \ - Relay=1-2" + Relay=1-3" ) } } |