diff options
author | David Goulet <dgoulet@torproject.org> | 2017-04-06 14:37:24 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-08-08 20:29:33 -0400 |
commit | 27dd1a716c63bcdda31f24ed08d259b4a91aa1c3 (patch) | |
tree | 29b34922764c554c0bd005bbbefb8b41b0a5b06e /src/or/hs_cell.h | |
parent | 100386e659533cfa92c5bfff93a15fb3535f7970 (diff) | |
download | tor-27dd1a716c63bcdda31f24ed08d259b4a91aa1c3.tar.gz tor-27dd1a716c63bcdda31f24ed08d259b4a91aa1c3.zip |
prop224: Support INTRODUCE2 cell replay cache
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/hs_cell.h')
-rw-r--r-- | src/or/hs_cell.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/hs_cell.h b/src/or/hs_cell.h index 6114182439..1336a399a7 100644 --- a/src/or/hs_cell.h +++ b/src/or/hs_cell.h @@ -47,6 +47,8 @@ typedef struct hs_cell_introduce2_data_t { curve25519_public_key_t client_pk; /* Link specifiers of the rendezvous point. Contains link_specifier_t. */ smartlist_t *link_specifiers; + /* Replay cache of the introduction point. */ + replaycache_t *replay_cache; } hs_cell_introduce2_data_t; /* Build cell API. */ |