summaryrefslogtreecommitdiffhomepage
path: root/Private/Source
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-03-05 16:38:50 +0000
committerAmlal El Mahrouss <amlalelmahrouss@icloud.com>2024-03-05 16:38:50 +0000
commitd5f33ac36eff7857083786e9daf076c4101cbd3c (patch)
tree0a55ea1dc85cf03cae1d7a1d35698c3a2bd27384 /Private/Source
parent3f898e74b7666acf51da16b03c2866ce379d8eb2 (diff)
Kernel: bump.
Diffstat (limited to 'Private/Source')
-rw-r--r--Private/Source/Network/NetworkDevice.cxx18
1 files changed, 0 insertions, 18 deletions
diff --git a/Private/Source/Network/NetworkDevice.cxx b/Private/Source/Network/NetworkDevice.cxx
index 0d9af73d..eba95a2c 100644
--- a/Private/Source/Network/NetworkDevice.cxx
+++ b/Private/Source/Network/NetworkDevice.cxx
@@ -6,24 +6,6 @@
#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