diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-12-30 12:07:28 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-12-30 12:07:39 -0500 |
commit | ac632a784cdeecaef81e5f1fe45a20f43a93aea7 (patch) | |
tree | ad86d7845b6bc27dfc7b8ee9f7ac3849cbe3fed4 /src/or/rendservice.h | |
parent | f2e4423bd2bf684849c968ff6bb19dfc3ee7d788 (diff) | |
download | tor-ac632a784cdeecaef81e5f1fe45a20f43a93aea7.tar.gz tor-ac632a784cdeecaef81e5f1fe45a20f43a93aea7.zip |
Coalesce v0 and v1 fields of rend_intro_cell_t
This saves a tiny bit of code, and makes a longstanding coverity
false positive go away.
Diffstat (limited to 'src/or/rendservice.h')
-rw-r--r-- | src/or/rendservice.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/or/rendservice.h b/src/or/rendservice.h index c2342ef573..05502cac5d 100644 --- a/src/or/rendservice.h +++ b/src/or/rendservice.h @@ -38,13 +38,9 @@ struct rend_intro_cell_s { /* Version-specific parts */ union { struct { - /* Rendezvous point nickname */ - uint8_t rp[20]; - } v0; - struct { /* Rendezvous point nickname or hex-encoded key digest */ uint8_t rp[42]; - } v1; + } v0_v1; struct { /* The extend_info_t struct has everything v2 uses */ extend_info_t *extend_info; |