mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-05 20:39:19 +00:00
🎉Implemented networking🎉
This commit is contained in:
21
Network/NetworkTimeProtocol.cpp
Normal file
21
Network/NetworkTimeProtocol.cpp
Normal 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()");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user