summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/NetworkKit/IP.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Kernel/NetworkKit/IP.hxx')
-rw-r--r--dev/Kernel/NetworkKit/IP.hxx83
1 files changed, 0 insertions, 83 deletions
diff --git a/dev/Kernel/NetworkKit/IP.hxx b/dev/Kernel/NetworkKit/IP.hxx
deleted file mode 100644
index 6003021e..00000000
--- a/dev/Kernel/NetworkKit/IP.hxx
+++ /dev/null
@@ -1,83 +0,0 @@
-/* -------------------------------------------
-
- Copyright ZKA Technologies.
-
-------------------------------------------- */
-
-#pragma once
-
-#include <KernelKit/DebugOutput.hxx>
-#include <NewKit/Defines.hxx>
-#include <NewKit/Ref.hxx>
-#include <NewKit/String.hxx>
-
-namespace Kernel
-{
- class RawIPAddress6;
- class RawIPAddress;
- class IPFactory;
-
- class RawIPAddress final
- {
- private:
- explicit RawIPAddress(char bytes[4]);
- ~RawIPAddress() = default;
-
- RawIPAddress& operator=(const RawIPAddress&) = delete;
- RawIPAddress(const RawIPAddress&) = default;
-
- public:
- char* Address();
-
- char& operator[](const Size& index);
-
- bool operator==(const RawIPAddress& ipv6);
- bool operator!=(const RawIPAddress& ipv6);
-
- private:
- char fAddr[4];
-
- friend IPFactory; // it is the one creating these addresses, thus this
- // is why the constructors are private.
- };
-
- /**
- * @brief IPv6 address.
- */
- class RawIPAddress6 final
- {
- private:
- explicit RawIPAddress6(char Bytes[8]);
- ~RawIPAddress6() = default;
-
- RawIPAddress6& operator=(const RawIPAddress6&) = delete;
- RawIPAddress6(const RawIPAddress6&) = default;
-
- public:
- char* Address()
- {
- return fAddr;
- }
-
- char& operator[](const Size& index);
-
- bool operator==(const RawIPAddress6& ipv6);
- bool operator!=(const RawIPAddress6& ipv6);
-
- private:
- char fAddr[8];
-
- friend IPFactory;
- };
-
- /**
- * @brief IP Creation helpers
- */
- class IPFactory final
- {
- public:
- static ErrorOr<StringView> ToStringView(Ref<RawIPAddress6>& ipv6);
- static ErrorOr<StringView> ToStringView(Ref<RawIPAddress>& ipv4);
- static bool IpCheckVersion4(const char* ip);
- };
-} // namespace Kernel