diff options
Diffstat (limited to 'dev/kernel/NetworkKit')
| -rw-r--r-- | dev/kernel/NetworkKit/IP.h | 4 | ||||
| -rw-r--r-- | dev/kernel/NetworkKit/IPC.h | 4 | ||||
| -rw-r--r-- | dev/kernel/NetworkKit/MAC.h | 4 | ||||
| -rw-r--r-- | dev/kernel/NetworkKit/NetworkDevice.h | 4 | ||||
| -rw-r--r-- | dev/kernel/NetworkKit/NetworkDevice.inl | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/dev/kernel/NetworkKit/IP.h b/dev/kernel/NetworkKit/IP.h index 4a552d87..6297055e 100644 --- a/dev/kernel/NetworkKit/IP.h +++ b/dev/kernel/NetworkKit/IP.h @@ -11,7 +11,7 @@ #include <NewKit/Ref.h> #include <NewKit/KString.h> -namespace NeOS +namespace Kernel { class RawIPAddress6; class RawIPAddress; @@ -80,4 +80,4 @@ namespace NeOS static ErrorOr<KString> ToKString(Ref<RawIPAddress>& ipv4); static bool IpCheckVersion4(const Char* ip); }; -} // namespace NeOS +} // namespace Kernel diff --git a/dev/kernel/NetworkKit/IPC.h b/dev/kernel/NetworkKit/IPC.h index cbb9ddd4..9a3e77e6 100644 --- a/dev/kernel/NetworkKit/IPC.h +++ b/dev/kernel/NetworkKit/IPC.h @@ -25,7 +25,7 @@ #define kIPCHeaderMagic (0x4950434) -namespace NeOS +namespace Kernel { struct IPC_ADDR; struct IPC_MSG; @@ -86,6 +86,6 @@ namespace NeOS /// @retval true packet is correct. /// @retval false packet is incorrect and process has crashed. Bool ipc_construct_packet(_Output _Input IPC_MSG** pckt_in); -} // namespace NeOS +} // namespace Kernel #endif // INC_IPC_H diff --git a/dev/kernel/NetworkKit/MAC.h b/dev/kernel/NetworkKit/MAC.h index f7283708..527d9b1f 100644 --- a/dev/kernel/NetworkKit/MAC.h +++ b/dev/kernel/NetworkKit/MAC.h @@ -12,7 +12,7 @@ #define kMACAddrLen (12) -namespace NeOS +namespace Kernel { class MacAddressGetter; @@ -33,4 +33,4 @@ namespace NeOS Array<WideChar, kMACAddrLen> fMacAddress; }; -} // namespace NeOS +} // namespace Kernel diff --git a/dev/kernel/NetworkKit/NetworkDevice.h b/dev/kernel/NetworkKit/NetworkDevice.h index c95573f3..ca11fdbb 100644 --- a/dev/kernel/NetworkKit/NetworkDevice.h +++ b/dev/kernel/NetworkKit/NetworkDevice.h @@ -12,7 +12,7 @@ /// @note Can either work with: Ethernet, GPRS, WiFi -namespace NeOS +namespace Kernel { struct NetworkDeviceCommand; class NetworkDevice; @@ -76,7 +76,7 @@ namespace NeOS /// @brief LTE device. using LTENetworkDevice = NetworkDevice; -} // namespace NeOS +} // namespace Kernel #include <NetworkKit/NetworkDevice.inl> diff --git a/dev/kernel/NetworkKit/NetworkDevice.inl b/dev/kernel/NetworkKit/NetworkDevice.inl index dceae66e..52e5f036 100644 --- a/dev/kernel/NetworkKit/NetworkDevice.inl +++ b/dev/kernel/NetworkKit/NetworkDevice.inl @@ -8,7 +8,7 @@ Dtor and ctors. */ -namespace NeOS +namespace Kernel { NetworkDevice::NetworkDevice(void (*out)(IDeviceObject<NetworkDeviceCommand>*, NetworkDeviceCommand), void (*in)(IDeviceObject<NetworkDeviceCommand>*, NetworkDeviceCommand), @@ -29,4 +29,4 @@ namespace NeOS if (fCleanup) fCleanup(); } -} // namespace NeOS +} // namespace Kernel |
