summaryrefslogtreecommitdiff
path: root/obfs4proxy
diff options
context:
space:
mode:
authorYawning Angel <yawning@torproject.org>2014-08-20 13:43:43 +0000
committerYawning Angel <yawning@torproject.org>2014-08-20 13:43:43 +0000
commitdd9fdee55d75e23fff97177999b7fd16613fa27a (patch)
treecb4723b0ae683290aee12c2e87ea4f6343d636d2 /obfs4proxy
parentf32f01ba01351c2cca26be3a62a9c2aa395ee433 (diff)
Add a missing "continue" statement.
Caught by asn, thanks.
Diffstat (limited to 'obfs4proxy')
-rw-r--r--obfs4proxy/obfs4proxy.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/obfs4proxy/obfs4proxy.go b/obfs4proxy/obfs4proxy.go
index d3490bf..8820127 100644
--- a/obfs4proxy/obfs4proxy.go
+++ b/obfs4proxy/obfs4proxy.go
@@ -234,6 +234,7 @@ func serverSetup() (launched bool, listeners []net.Listener) {
ln, err := net.ListenTCP("tcp", bindaddr.Addr)
if err != nil {
pt.SmethodError(name, err.Error())
+ continue
}
go serverAcceptLoop(f, ln, &ptServerInfo)