mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 17:01:24 +12:00
Add sys_net error for EISCONN
This commit is contained in:
parent
073772a801
commit
e9914f3004
1 changed files with 1 additions and 0 deletions
|
@ -205,6 +205,7 @@ static sys_net_error get_last_error(bool is_blocking, int native_error = 0)
|
|||
ERROR_CASE(ENOTCONN);
|
||||
ERROR_CASE(ECONNRESET);
|
||||
ERROR_CASE(EADDRINUSE);
|
||||
ERROR_CASE(EISCONN);
|
||||
default: sys_net.error("Unknown/illegal socket error: %d", native_error);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue