diff options
| author | Yawning Angel <yawning@torproject.org> | 2014-08-20 13:43:43 +0000 | 
|---|---|---|
| committer | Yawning Angel <yawning@torproject.org> | 2014-08-20 13:43:43 +0000 | 
| commit | dd9fdee55d75e23fff97177999b7fd16613fa27a (patch) | |
| tree | cb4723b0ae683290aee12c2e87ea4f6343d636d2 | |
| parent | f32f01ba01351c2cca26be3a62a9c2aa395ee433 (diff) | |
Add a missing "continue" statement.
Caught by asn, thanks.
| -rw-r--r-- | obfs4proxy/obfs4proxy.go | 1 | 
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) | 
