123456789101112131415161718 |
- Authority = Node(tag="a", authority=1, relay=1, torrc="authority.tmpl")
- NonExitRelay = Node(tag="r", relay=1, torrc="relay-non-exit.tmpl")
- Client = Node(tag="c", client=1, torrc="client.tmpl")
- HS10 = Node(tag="h", hs=1, torrc="hs-v3-10.tmpl")
- NODES = Authority.getN(2) + NonExitRelay.getN(10) + \
- Client.getN(1) + HS10.getN(2)
- ConfigureNodes(NODES)
|