diff options
author | David Goulet <dgoulet@torproject.org> | 2022-02-03 21:18:52 +0000 |
---|---|---|
committer | Mike Perry <mikeperry-git@torproject.org> | 2022-02-22 19:28:35 +0000 |
commit | 6f45ad3771880b9f03bcc0190dce4959df211005 (patch) | |
tree | 1d8796e8a5603a420a22bc5607d5dc1d64c7c965 /src/feature/hs/hs_common.c | |
parent | 729dd14fdec9ece47142a5dc1434d32da109982e (diff) | |
download | tor-6f45ad3771880b9f03bcc0190dce4959df211005.tar.gz tor-6f45ad3771880b9f03bcc0190dce4959df211005.zip |
hs: Setup congestion control on service rends using intro data
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/feature/hs/hs_common.c')
-rw-r--r-- | src/feature/hs/hs_common.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/feature/hs/hs_common.c b/src/feature/hs/hs_common.c index 3036ce2710..e326581dd1 100644 --- a/src/feature/hs/hs_common.c +++ b/src/feature/hs/hs_common.c @@ -1687,18 +1687,7 @@ hs_get_extend_info_from_lspecs(const smartlist_t *lspecs, /* We do have everything for which we think we can connect successfully. */ info = extend_info_new(NULL, legacy_id, (have_ed25519_id) ? &ed25519_pk : NULL, NULL, - onion_key, &ap.addr, ap.port, - /* TODO-324: oh wow, this is a hard one. - - The protover summary here needs to explain - if we support the newer congestion control or - not. This may require new specification changes. - - Probably there is some analogous service-side - function that needs to initialize congestion - control structures based on what the client says. - */ - NULL, false); + onion_key, &ap.addr, ap.port, NULL, false); done: return info; } |