Fix: don't use proxy for incoming connections

This commit is contained in:
SChernykh 2022-09-06 15:59:05 +02:00
parent 989a28a8ca
commit e92cc7d50c

View file

@ -779,7 +779,7 @@ void TCPServer<READ_BUF_SIZE, WRITE_BUF_SIZE>::on_new_client(uv_stream_t* server
return;
}
if (owner->m_socks5Proxy.empty()) {
if (client->m_isIncoming || owner->m_socks5Proxy.empty()) {
if (!client->on_connect()) {
client->close();
return;