diff options
-rw-r--r-- | context.h | 1 | ||||
-rw-r--r-- | include/pso/TTcpSocket.h | 1 | ||||
-rw-r--r-- | src/pso/TTcpSocket.cpp | 2 |
3 files changed, 3 insertions, 1 deletions
@@ -831,6 +831,7 @@ public: virtual int send(u8 *data, size_t size) override; short stat(); + void some_stub(); int test_connection(); static void notify(short size, short sock_fd); diff --git a/include/pso/TTcpSocket.h b/include/pso/TTcpSocket.h index 8e8dab9..b6faf56 100644 --- a/include/pso/TTcpSocket.h +++ b/include/pso/TTcpSocket.h @@ -29,6 +29,7 @@ public: virtual int send(u8 *data, size_t size) override; short stat(); + void some_stub(); int test_connection(); static void notify(short size, short sock_fd); diff --git a/src/pso/TTcpSocket.cpp b/src/pso/TTcpSocket.cpp index 5021fd6..0317f37 100644 --- a/src/pso/TTcpSocket.cpp +++ b/src/pso/TTcpSocket.cpp @@ -144,7 +144,7 @@ int TTcpSocket::test_connection() { } -void some_stub() {} +void TTcpSocket::some_stub() {} short TTcpSocket::stat() { if (sock_fd() != -1) { |