summaryrefslogtreecommitdiffhomepage
path: root/Private/Source/Network/NetworkDevice.cxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-25 16:12:36 +0100
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-02-25 16:12:36 +0100
commit2bd2e28868d50a2f3ced8b1bfea68216ed35622a (patch)
tree4bf376821d13f005d72cbf5feca5cb1f18ae60cd /Private/Source/Network/NetworkDevice.cxx
parent9be51d883414584db0926ab854d6026e1785048b (diff)
WiP: See below.
- Reworking bootloader to adapt if kernel and programs are already here or not for HCoreLdr. - Working on IDT support for HCoreKrnl. - Add Award and Mahrouss Logic logo in recovery-mode for HCoreKrnl. - Working on reading .NewBoot section in HCoreLdr. Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/Source/Network/NetworkDevice.cxx')
-rw-r--r--Private/Source/Network/NetworkDevice.cxx32
1 files changed, 32 insertions, 0 deletions
diff --git a/Private/Source/Network/NetworkDevice.cxx b/Private/Source/Network/NetworkDevice.cxx
new file mode 100644
index 00000000..8443467c
--- /dev/null
+++ b/Private/Source/Network/NetworkDevice.cxx
@@ -0,0 +1,32 @@
+/*
+ * ========================================================
+ *
+ * HCore
+ * Copyright Mahrouss Logic, all rights reserved.
+ *
+ * ========================================================
+ */
+
+#include <NetworkKit/NetworkDevice.hpp>
+
+// network devices implementation.
+// PPPNetworkService, TCPNetworkDevice, UDPNetworkService
+
+namespace HCore {
+NetworkDevice::NetworkDevice(void (*out)(NetworkDeviceCommand),
+ void (*in)(NetworkDeviceCommand),
+ void (*on_cleanup)(void))
+ : DeviceInterface<NetworkDeviceCommand>(out, in), fCleanup(on_cleanup) {
+#ifdef __DEBUG__
+ kcout << "NetworkDevice init.\r\n";
+#endif
+}
+
+NetworkDevice::~NetworkDevice() {
+#ifdef __DEBUG__
+ kcout << "NetworkDevice cleanup.\r\n";
+#endif
+
+ if (fCleanup) fCleanup();
+}
+} // namespace HCore