瀏覽代碼

remove goroutine on command handling

Darien Raymond 9 年之前
父節點
當前提交
f47c21c422
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      proxy/vmess/outbound/outbound.go

+ 1 - 1
proxy/vmess/outbound/outbound.go

@@ -136,7 +136,7 @@ func (v *VMessOutboundHandler) handleResponse(session *encoding.ClientSession, c
 		log.Warning("VMess|Outbound: Failed to read response from ", request.Destination(), ": ", err)
 		return
 	}
-	go v.handleCommand(dest, header.Command)
+	v.handleCommand(dest, header.Command)
 
 	conn.SetReusable(header.Option.Has(protocol.ResponseOptionConnectionReuse))