(untested yet) code for sending and receiving packets via sockets

MAC randomization
This commit is contained in:
StapleButter
2017-05-11 23:43:57 +02:00
parent e9a24b4d06
commit 01361f006e
3 changed files with 89 additions and 0 deletions

View File

@ -26,6 +26,8 @@ namespace Platform
bool MP_Init();
void MP_DeInit();
int MP_SendPacket(u8* data, int len, int rate);
int MP_RecvPacket(u8* data, bool block, int* rate);
}