diff options
-rw-r--r-- | context.h | 2 | ||||
-rw-r--r-- | include/pso/TTcpSocket.h | 2 | ||||
-rw-r--r-- | src/pso/TTcpSocket.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -830,7 +830,7 @@ public: virtual short send(u8 *data) override; virtual int send(u8 *data, size_t size) override; - int stat(); + short stat(); int test_connection(); static void notify(short size, short sock_fd); diff --git a/include/pso/TTcpSocket.h b/include/pso/TTcpSocket.h index 9740a3a..8e8dab9 100644 --- a/include/pso/TTcpSocket.h +++ b/include/pso/TTcpSocket.h @@ -28,7 +28,7 @@ public: virtual short send(u8 *data) override; virtual int send(u8 *data, size_t size) override; - int stat(); + short stat(); int test_connection(); static void notify(short size, short sock_fd); diff --git a/src/pso/TTcpSocket.cpp b/src/pso/TTcpSocket.cpp index 71bdd99..5021fd6 100644 --- a/src/pso/TTcpSocket.cpp +++ b/src/pso/TTcpSocket.cpp @@ -146,7 +146,7 @@ int TTcpSocket::test_connection() { void some_stub() {} -int TTcpSocket::stat() { +short TTcpSocket::stat() { if (sock_fd() != -1) { return tcp_stat(sock_fd(), &stat_val(), nullptr, &send_window(), &recv_window()); } else { |