From cc6c1b752903cdc869bd29d609ed26f2618a8e69 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 15 Mar 2025 04:38:09 +0100 Subject: Kernel: Networking code tweaks. Signed-off-by: Amlal El Mahrouss --- dev/Kernel/NetworkKit/IP.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'dev/Kernel/NetworkKit') diff --git a/dev/Kernel/NetworkKit/IP.h b/dev/Kernel/NetworkKit/IP.h index 0beae91e..4a552d87 100644 --- a/dev/Kernel/NetworkKit/IP.h +++ b/dev/Kernel/NetworkKit/IP.h @@ -27,15 +27,15 @@ namespace NeOS RawIPAddress(const RawIPAddress&) = default; public: - char* Address(); + Char* Address(); - char& operator[](const Size& index); + Char& operator[](const Size& index); - bool operator==(const RawIPAddress& ipv6); - bool operator!=(const RawIPAddress& ipv6); + BOOL operator==(const RawIPAddress& ipv6); + BOOL operator!=(const RawIPAddress& ipv6); private: - char fAddr[4]; + Char fAddr[4]; friend IPFactory; // it is the one creating these addresses, thus this // is why the constructors are private. -- cgit v1.2.3