mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
Merge pull request #67345 from Faless/ws/4.x_fix_connecting
[WebSocket] Fix TCP connection being closed while connecting.
This commit is contained in:
commit
29fc755f5b
@ -104,6 +104,8 @@ void WSLPeer::Resolver::try_next_candidate(Ref<StreamPeerTCP> &p_tcp) {
|
||||
p_tcp->set_no_delay(true);
|
||||
ip_candidates.clear();
|
||||
return;
|
||||
} else if (status == StreamPeerTCP::STATUS_CONNECTING) {
|
||||
return; // Keep connecting.
|
||||
} else {
|
||||
p_tcp->disconnect_from_host();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user