Skip to content
Snippets Groups Projects
Commit 1c6c05fa authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

netdoc: allocate no extra space for RouterStatus addresses.

This should save around 181K of heap on a current directory.
parent e7c584f1
No related branches found
No related tags found
1 merge request!400tor-netdoc: Save allocation space in GenericRouterstatus
......@@ -193,12 +193,13 @@ where
let or_port = r_item.required_arg(5 + skip)?.parse::<u16>()?;
let _ = r_item.required_arg(6 + skip)?.parse::<u16>()?;
let mut addrs: Vec<net::SocketAddr> = vec![net::SocketAddr::V4(net::SocketAddrV4::new(
// main address and A lines.
let a_items = sec.slice(RS_A);
let mut addrs = Vec::with_capacity(1 + a_items.len());
addrs.push(net::SocketAddr::V4(net::SocketAddrV4::new(
ipv4addr, or_port,
))];
// A lines
for a_item in sec.slice(RS_A) {
)));
for a_item in a_items {
addrs.push(a_item.required_arg(0)?.parse::<net::SocketAddr>()?);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment