tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 4ac87a430f9eddf138b9f686eea1e851f522cead
parent 23cb9a046ce13b4203b76e77348837610b5c885d
Author: Nick Mathewson <nickm@torproject.org>
Date:   Thu, 12 Jul 2018 10:35:29 -0400

Remove a redundant typedef in addr_policy_st.h

Diffstat:
Msrc/core/or/addr_policy_st.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/core/or/addr_policy_st.h b/src/core/or/addr_policy_st.h @@ -18,7 +18,7 @@ typedef enum { #define addr_policy_action_bitfield_t ENUM_BF(addr_policy_action_t) /** A reference-counted address policy rule. */ -typedef struct addr_policy_t { +struct addr_policy_t { int refcnt; /**< Reference count */ /** What to do when the policy matches.*/ addr_policy_action_bitfield_t policy_type:2; @@ -41,6 +41,6 @@ typedef struct addr_policy_t { tor_addr_t addr; uint16_t prt_min; /**< Lowest port number to accept/reject. */ uint16_t prt_max; /**< Highest port number to accept/reject. */ -} addr_policy_t; +}; #endif