diff options
author | Roger Dingledine <arma@torproject.org> | 2022-06-30 16:10:56 -0400 |
---|---|---|
committer | Micah Elizabeth Scott <beth@torproject.org> | 2023-05-10 07:37:11 -0700 |
commit | 4571faf0c343e3224c0113225eca14e3eacde7b2 (patch) | |
tree | 8c434d99b70b770b5b8f9699f7f95e58a6d1f5b7 /src/feature/hs/hs_circuit.h | |
parent | 047f8c63ee6793bee1f0db292e4041c31d23ca85 (diff) | |
download | tor-4571faf0c343e3224c0113225eca14e3eacde7b2.tar.gz tor-4571faf0c343e3224c0113225eca14e3eacde7b2.zip |
pass time around as a parameter
should help with unit testing
Diffstat (limited to 'src/feature/hs/hs_circuit.h')
-rw-r--r-- | src/feature/hs/hs_circuit.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/feature/hs/hs_circuit.h b/src/feature/hs/hs_circuit.h index cbd48c5b33..d61ddcede8 100644 --- a/src/feature/hs/hs_circuit.h +++ b/src/feature/hs/hs_circuit.h @@ -106,7 +106,8 @@ MOCK_DECL(STATIC void, launch_rendezvous_point_circuit,(const hs_service_t *service, const ed25519_public_key_t *ip_auth_pubkey, const curve25519_keypair_t *ip_enc_key_kp, - const hs_cell_intro_rdv_data_t *rdv_data)); + const hs_cell_intro_rdv_data_t *rdv_data, + time_t now)); #endif /* defined(HS_CIRCUIT_PRIVATE) */ |