Fix isConnect logic mistake

Co-authored-by: jevin.shi <jevin.shj@gmail.com>
This commit is contained in:
shij 2023-06-16 16:35:05 +08:00 committed by GitHub
parent a3b120b25e
commit e2392d8d40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,7 +60,7 @@ func (c *ServerConn) loopInput() {
for {
var destination M.Socksaddr
var err error
if !c.isConnect {
if c.isConnect {
destination = c.destination
} else {
destination, err = AddrParser.ReadAddrPort(c.inputReader)