refactor IServerSocket

This commit is contained in:
2025-08-06 17:16:50 +02:00
parent fb53ece340
commit 89213e9a97
7 changed files with 39 additions and 30 deletions

View File

@@ -0,0 +1,11 @@
#include <server/socket/FakeSocket.h>
namespace td {
namespace server {
void FakeSocket::SendPeer(PeerID a_Peer, const protocol::PacketBase& a_Packet) {
OnSend(a_Peer, a_Packet);
}
} // namespace server
} // namespace td