Merge branch 'misc' into 'main'

Fix a couple of minor issues

See merge request tpo/core/arti!1003
This commit is contained in:
Nick Mathewson 2023-02-01 19:22:02 +00:00
commit 7ad4310d6c
2 changed files with 3 additions and 2 deletions

View File

@ -606,7 +606,7 @@ impl PartialNetDir {
}
}
#[cfg(feature = "hs-common")]
#[cfg(feature = "onion-common")]
{
// TODO hs: cache the values for the hash rings if possible, maybe
// in the PartialNetDir, since we will want to use them in computing
@ -619,7 +619,7 @@ impl PartialNetDir {
}
/// Compute the hash ring(s) for this NetDir, if one is not already computed.
#[cfg(feature = "hs-common")]
#[cfg(feature = "onion-common")]
#[allow(clippy::missing_panics_doc)]
pub fn compute_ring(&mut self) {
// TODO hs: compute the ring based on the time period and shared random

View File

@ -22,6 +22,7 @@ pub(crate) mod object {
/// indicates the end of a begin or end tag.
pub(crate) const TAG_END: &str = "-----";
/// Maximum PEM base64 line length (not enforced during parsing)
#[cfg(feature = "onion-service")]
pub(crate) const BASE64_PEM_MAX_LINE: usize = 64;
}