[tor-commits] [chutney/master] Turn bridges+hs-v23 into a three-phase network.

nickm at torproject.org nickm at torproject.org
Mon Jul 20 20:50:24 UTC 2020


commit e81fb54b1daffc256009930b1d24be42136d31d8
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Jul 20 11:57:48 2020 -0400

    Turn bridges+hs-v23 into a three-phase network.
    
    First, bootstrap the authorities and relays.  Next, the bridge and
    hidden services.  Finally, the bridge client.
---
 networks/bridges+hs-v23 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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





More information about the tor-commits mailing list