diff options
author | Theo Hallenius <redsymbzone@hotmail.com> | 2014-05-31 17:13:08 +0200 |
---|---|---|
committer | Theo Hallenius <redsymbzone@hotmail.com> | 2014-05-31 17:13:08 +0200 |
commit | 91aa645d8a6d3dfa4e92a7de37a6bee5b8c3b31a (patch) | |
tree | 7f7ca8715a00a46a71b25d7df0dea1265709bb79 /drivers | |
parent | 6f0b4678e26c04abfc88c0226c803e78a108de98 (diff) |
Return an error code when address/port already in use
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/unix/tcp_server_posix.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/unix/tcp_server_posix.cpp b/drivers/unix/tcp_server_posix.cpp index f91ad36ef9..dfcf479fc0 100644 --- a/drivers/unix/tcp_server_posix.cpp +++ b/drivers/unix/tcp_server_posix.cpp @@ -93,6 +93,9 @@ Error TCPServerPosix::listen(uint16_t p_port,const List<String> *p_accepted_host close(sockfd); ERR_FAIL_V(FAILED); }; + } + else { + return ERR_ALREADY_IN_USE; }; if (listen_sockfd != -1) { |