diff options
author | David Goulet <dgoulet@torproject.org> | 2021-02-16 10:36:13 -0500 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2021-02-19 13:20:49 -0500 |
commit | 897ec8a34cbdfc510ddddd33cc027e13985fde8f (patch) | |
tree | 13f3af36b394a57bfdeea6e87bf400c4128d9146 /src/feature/hs/hs_service.c | |
parent | 9f2e74cac710a50dcc08b3bcaf7c2dc91b4ea949 (diff) | |
download | tor-897ec8a34cbdfc510ddddd33cc027e13985fde8f.tar.gz tor-897ec8a34cbdfc510ddddd33cc027e13985fde8f.zip |
hs: Remove v2 stats
We still keep v2 rendezvous stats since we will allow them until the network
has entirely phased out.
Related to #40266
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/feature/hs/hs_service.c')
-rw-r--r-- | src/feature/hs/hs_service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/hs/hs_service.c b/src/feature/hs/hs_service.c index 79734a67d5..3e0ecb91e1 100644 --- a/src/feature/hs/hs_service.c +++ b/src/feature/hs/hs_service.c @@ -4075,7 +4075,7 @@ hs_service_receive_introduce2(origin_circuit_t *circ, const uint8_t *payload, if (circ->hs_ident) { ret = service_handle_introduce2(circ, payload, payload_len); - hs_stats_note_introduce2_cell(1); + hs_stats_note_introduce2_cell(); } done: |