1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-16 07:07:13 +02:00

Initial implementation of basic TCP/UDP sockets.

This commit is contained in:
Sandu Liviu Catalin
2020-04-20 04:46:05 +03:00
parent 8a927419c2
commit 5393b62892
20 changed files with 4533 additions and 6 deletions

View File

@ -284,7 +284,7 @@ public:
, m_Mem(MemRef::Get())
{
Request(size < 8 ? 8 : size);
m_Cur += Write(m_Cur, data, size);
Write(m_Cur, data, size);
Move(pos);
}