diff options
Diffstat (limited to 'dev/Kernel/NetworkKit')
| -rw-r--r-- | dev/Kernel/NetworkKit/IP.h | 10 |
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. |
