summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/NetworkKit/IP.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-15 04:38:09 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-03-15 04:38:09 +0100
commitcc6c1b752903cdc869bd29d609ed26f2618a8e69 (patch)
tree2909fa0ca5d83576d1949774fd35f0e1a2ac0a8f /dev/Kernel/NetworkKit/IP.h
parent6bbf5ad2058db4020ae20d6aba8f5b099dadc85f (diff)
Kernel: Networking code tweaks.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Kernel/NetworkKit/IP.h')
-rw-r--r--dev/Kernel/NetworkKit/IP.h10
1 files changed, 5 insertions, 5 deletions
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.