diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-27 12:28:55 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-27 12:31:41 +0200 |
| commit | b4f35dbe44e07b597c3e7bb6d7562757069a7cb4 (patch) | |
| tree | 88af99a2cca9c514536b4b61785fa67b3543429c /dev/lib/net/modem.hpp | |
| parent | fbda49eea45ce08b9a72744c04761e1556ebd2fa (diff) | |
feat: moved SOCL into OCL, without SNU's baggage.v1.0.41
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/lib/net/modem.hpp')
| -rw-r--r-- | dev/lib/net/modem.hpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dev/lib/net/modem.hpp b/dev/lib/net/modem.hpp index f6796be..e350f91 100644 --- a/dev/lib/net/modem.hpp +++ b/dev/lib/net/modem.hpp @@ -1,12 +1,12 @@ /* * File: net/modem.hpp * Purpose: Modem concept in modern C++ - * Author: Amlal El Mahrouss (founder@snu.systems) - * Copyright 2025, Amlal El Mahrouss and SNU Systems Corp. + * Author: Amlal El Mahrouss (amlal@nekernel.org) + * Copyright 2025, Amlal El Mahrouss */ -#ifndef _SNU_NET_NETWORK_HPP -#define _SNU_NET_NETWORK_HPP +#ifndef _OCL_NET_NETWORK_HPP +#define _OCL_NET_NETWORK_HPP #include <unistd.h> #include <arpa/inet.h> @@ -15,9 +15,9 @@ #include <utility> #include <cstddef> -#define SNU_MODEM_INTERFACE : protected snu::net::basic_modem +#define OCL_MODEM_INTERFACE : protected ocl::net::basic_modem -namespace snu::net +namespace ocl::net { template <typename char_type> class basic_modem; @@ -139,6 +139,6 @@ namespace snu::net return true; } }; -} // namespace snu::net +} // namespace ocl::net -#endif // ifndef _SNU_NET_NETWORK_HPP +#endif // ifndef _OCL_NET_NETWORK_HPP |
