move public relays to new hostnames and ports

This commit is contained in:
Brian Warner 2015-03-25 14:46:35 -07:00
parent 106991fe0d
commit 717bfa3b0b
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# This is a relay I run on a personal server. If it gets too expensive to
# run, I'll shut it down.
RENDEZVOUS_RELAY = "http://relay.petmail.org:8009/relay/"
TRANSIT_RELAY = "tcp:relay.petmail.org:8010"
RENDEZVOUS_RELAY = "http://wormhole-relay.petmail.org:3000/relay/"
TRANSIT_RELAY = "tcp:wormhole-transit-relay.petmail.org:3001"

View File

@ -333,4 +333,4 @@ class RelayServer(service.MultiService):
self.transport_service.setServiceParent(self)
application = service.Application("foo")
RelayServer("tcp:8009", "tcp:8010").setServiceParent(application)
RelayServer("tcp:3000", "tcp:3001").setServiceParent(application)