[tor-commits] [chutney/master] networks: Make bridges+hs-v23 actually work

teor at torproject.org teor at torproject.org
Thu Feb 13 02:45:05 UTC 2020


commit 7533b1d920f08db98642e564a4df3b43b0b78d3d
Author: teor <teor at torproject.org>
Date:   Thu Feb 13 12:37:50 2020 +1000

    networks: Make bridges+hs-v23 actually work
    
    Part of 33302.
---
 networks/bridges+hs-v23 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/networks/bridges+hs-v23 b/networks/bridges+hs-v23
index 1afd75e..1022849 100644
--- a/networks/bridges+hs-v23
+++ b/networks/bridges+hs-v23
@@ -8,13 +8,13 @@ BridgeAuthority = Node(tag="ba", authority=1, bridgeauthority=1,
 Bridge = Node(tag="br", bridge=1, relay=1, torrc="bridge.tmpl")
 BridgeClient = Node(tag="bc", client=1, bridgeclient=1, torrc="bridgeclient.tmpl")
 HSv2 = Node(tag="h", hs=1, torrc="hs.tmpl")
-HSv3 = Node(tag="h", hs=1, torrc="hs-.tmpl")
+HSv3 = Node(tag="h", hs=1, torrc="hs-v3.tmpl")
 
 # We need 5 authorities/relays/exits to ensure we can build HS connections
 NODES = Authority.getN(3) + BridgeAuthority.getN(1) + \
-    ExitRelay.getN(4) + \
+    ExitRelay.getN(1) + \
     Bridge.getN(1) + \
     Client.getN(1) + BridgeClient.getN(1) + \
-    HS.getN(1)
+    HSv2.getN(1) + HSv3.getN(1)
 
 ConfigureNodes(NODES)



More information about the tor-commits mailing list