diff options
author | Mattes D <github@xoft.cz> | 2016-03-13 19:39:51 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-06-18 13:12:09 +0200 |
commit | 82e81c01a279547fc97d63fb69ba7018f2eb632d (patch) | |
tree | 3aaf2e2aeabfded926732422400fae541a2972ee /tests | |
parent | SelfTests: Moved BoundingBox test to a separate project. (diff) | |
download | cuberite-82e81c01a279547fc97d63fb69ba7018f2eb632d.tar cuberite-82e81c01a279547fc97d63fb69ba7018f2eb632d.tar.gz cuberite-82e81c01a279547fc97d63fb69ba7018f2eb632d.tar.bz2 cuberite-82e81c01a279547fc97d63fb69ba7018f2eb632d.tar.lz cuberite-82e81c01a279547fc97d63fb69ba7018f2eb632d.tar.xz cuberite-82e81c01a279547fc97d63fb69ba7018f2eb632d.tar.zst cuberite-82e81c01a279547fc97d63fb69ba7018f2eb632d.zip |
Diffstat (limited to '')
-rw-r--r-- | tests/Network/EchoServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Network/EchoServer.cpp b/tests/Network/EchoServer.cpp index 2a420fbac..fb5b06110 100644 --- a/tests/Network/EchoServer.cpp +++ b/tests/Network/EchoServer.cpp @@ -75,7 +75,7 @@ class cEchoLinkCallbacks: class cEchoServerCallbacks: public cNetwork::cListenCallbacks { - virtual cTCPLink::cCallbacksPtr OnIncomingConnection(const AString & a_RemoteIPAddress, UInt16 a_RemotePort) + virtual cTCPLink::cCallbacksPtr OnIncomingConnection(const AString & a_RemoteIPAddress, UInt16 a_RemotePort) override { LOGD("New incoming connection(%s:%d).", a_RemoteIPAddress.c_str(), a_RemotePort); return std::make_shared<cEchoLinkCallbacks>(); |