summaryrefslogtreecommitdiffhomepage
path: root/dev/lib/net
diff options
context:
space:
mode:
Diffstat (limited to 'dev/lib/net')
-rw-r--r--dev/lib/net/modem.hpp16
-rw-r--r--dev/lib/net/url.hpp10
2 files changed, 13 insertions, 13 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
diff --git a/dev/lib/net/url.hpp b/dev/lib/net/url.hpp
index f6dba95..ff6aebe 100644
--- a/dev/lib/net/url.hpp
+++ b/dev/lib/net/url.hpp
@@ -1,8 +1,8 @@
/*
* File: net/url.hpp
* Purpose: URL container 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
*/
#pragma once
@@ -11,9 +11,9 @@
#include <iostream>
#include <sstream>
-/// @author Amlal El Mahrouss (founder@snu.systems)
+/// @author Amlal El Mahrouss (amlal@nekernel.org)
-namespace snu::net
+namespace ocl::net
{
template <typename char_type>
class basic_url;
@@ -61,4 +61,4 @@ namespace snu::net
return ss_.size() > 0;
}
};
-} // namespace snu::net
+} // namespace ocl::net