mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 12:12:28 +00:00
Detect POLLERR revents too in NetSocketPosix.
Usually indicate an RST was received by a TCP socket.
This commit is contained in:
parent
a15db2d2b6
commit
479d4fb741
@ -400,6 +400,7 @@ Error NetSocketPosix::poll(PollType p_type, int p_timeout) const {
|
||||
int ret = ::poll(&pfd, 1, p_timeout);
|
||||
|
||||
ERR_FAIL_COND_V(ret < 0, FAILED);
|
||||
ERR_FAIL_COND_V(pfd.revents & POLLERR, FAILED);
|
||||
|
||||
if (ret == 0)
|
||||
return ERR_BUSY;
|
||||
|
Loading…
Reference in New Issue
Block a user