🎉Implemented networking🎉

This commit is contained in:
Alex
2022-12-24 06:24:10 +02:00
parent 0942fb4cd3
commit ba425e59ca
25 changed files with 1952 additions and 0 deletions

View File

@ -0,0 +1,21 @@
#include <net/ntp.hpp>
#include <debug.h>
#include "../kernel.h"
namespace NetworkNTP
{
NTP::NTP(NetworkUDP::Socket *Socket) : NetworkUDP::UDPEvents()
{
this->Socket = Socket;
}
NTP::~NTP()
{
}
void ReadTime()
{
fixme("ReadTime()");
}
}