mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 05:03:43 +01:00
Merge branch 'maint-0.3.5' into maint-0.4.0
This commit is contained in:
commit
f3fa22bf1b
4
changes/ticket33212
Normal file
4
changes/ticket33212
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor bugfixes (rust, build):
|
||||||
|
- Fix a syntax warning given by newer versions of Rust, and creating
|
||||||
|
problems for our continuous integration.
|
||||||
|
Fixes bug 33212; bugfix on 0.3.5.1-alpha.
|
@ -26,7 +26,7 @@ const FIRST_TOR_VERSION_TO_ADVERTISE_PROTOCOLS: &'static str = "0.2.9.3-alpha";
|
|||||||
/// before concluding that someone is trying to DoS us
|
/// before concluding that someone is trying to DoS us
|
||||||
///
|
///
|
||||||
/// C_RUST_COUPLED: protover.c `MAX_PROTOCOLS_TO_EXPAND`
|
/// C_RUST_COUPLED: protover.c `MAX_PROTOCOLS_TO_EXPAND`
|
||||||
const MAX_PROTOCOLS_TO_EXPAND: usize = (1 << 16);
|
const MAX_PROTOCOLS_TO_EXPAND: usize = 1 << 16;
|
||||||
|
|
||||||
/// The maximum size an `UnknownProtocol`'s name may be.
|
/// The maximum size an `UnknownProtocol`'s name may be.
|
||||||
pub(crate) const MAX_PROTOCOL_NAME_LENGTH: usize = 100;
|
pub(crate) const MAX_PROTOCOL_NAME_LENGTH: usize = 100;
|
||||||
|
Loading…
Reference in New Issue
Block a user