16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-20 07:59:18 +02:00
This commit is contained in:
milek7
2018-12-03 23:12:33 +01:00
parent 18ad14bc53
commit f525a77e23
13 changed files with 386 additions and 5 deletions

18
network/network.cpp Normal file
View File

@@ -0,0 +1,18 @@
#include "network/network.h"
#include "network/message.h"
#include "Logs.h"
void network::connection::connected()
{
WriteLog("net: socket connected", logtype::net);
}
void network::connection::message_received(message msg)
{
}
void network::connection::data_received(uint8_t *buffer, size_t len)
{
}