From 84cc6ff6f43b48383248282743efc514946db641 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 28 Mar 2024 13:05:28 +0100 Subject: Kernel: :boom: breaking changes, Update API and the HCORE based macros, rename HCore to NewOS. Signed-off-by: Amlal El Mahrouss --- Private/Source/Network/IP.cxx | 4 ++-- Private/Source/Network/NetworkDevice.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'Private/Source/Network') diff --git a/Private/Source/Network/IP.cxx b/Private/Source/Network/IP.cxx index c903dc95..04e5247d 100644 --- a/Private/Source/Network/IP.cxx +++ b/Private/Source/Network/IP.cxx @@ -7,7 +7,7 @@ #include #include -namespace HCore { +namespace NewOS { char* RawIPAddress::Address() { return m_Addr; } RawIPAddress::RawIPAddress(char bytes[4]) { rt_copy_memory(bytes, m_Addr, 4); } @@ -91,4 +91,4 @@ bool IPFactory::IpCheckVersion4(const char* ip) { return true; } -} // namespace HCore +} // namespace NewOS diff --git a/Private/Source/Network/NetworkDevice.cxx b/Private/Source/Network/NetworkDevice.cxx index f43ef335..da0e2bb5 100644 --- a/Private/Source/Network/NetworkDevice.cxx +++ b/Private/Source/Network/NetworkDevice.cxx @@ -6,6 +6,6 @@ #include -namespace HCore { +namespace NewOS { const char *NetworkDevice::Name() const { return "NetworkDevice"; } -} // namespace HCore +} // namespace NewOS -- cgit v1.2.3