Skip to content
Snippets Groups Projects
Commit 46e34842 authored by David Goulet's avatar David Goulet :panda_face:
Browse files

addr: Initialize resolved address cache to NULL address


Related to #40022

Signed-off-by: David Goulet's avatarDavid Goulet <dgoulet@torproject.org>
parent 9b2cadb4
Branches
Tags
No related merge requests found
......@@ -42,13 +42,15 @@ typedef enum {
} fn_address_ret_t;
/** Last resolved addresses. */
static tor_addr_t last_resolved_addrs[IDX_SIZE];
static tor_addr_t last_resolved_addrs[IDX_SIZE] =
{ TOR_ADDR_NULL, TOR_ADDR_NULL, TOR_ADDR_NULL };
/** Last suggested addresses.
*
* These addresses come from a NETINFO cell from a trusted relay (currently
* only authorities). We only use those in last resort. */
static tor_addr_t last_suggested_addrs[IDX_SIZE];
static tor_addr_t last_suggested_addrs[IDX_SIZE] =
{ TOR_ADDR_NULL, TOR_ADDR_NULL, TOR_ADDR_NULL };
static inline int
af_to_idx(const int family)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment