summaryrefslogtreecommitdiffhomepage
path: root/lib/stdx/cgi.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-03-31 12:46:24 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-03-31 12:46:24 +0200
commit7bc56921bb59fe4159bccff45f567f989cf3c999 (patch)
tree6b65bd0acf8729780afaf40168a92f1f22653cc7 /lib/stdx/cgi.hpp
parent7be6771d2fe24d53524ea17aec139d547a63a3c0 (diff)
meta: rename to astdx, to avoid future confusions.
Diffstat (limited to 'lib/stdx/cgi.hpp')
-rw-r--r--lib/stdx/cgi.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stdx/cgi.hpp b/lib/stdx/cgi.hpp
index 5213c15..ae2b650 100644
--- a/lib/stdx/cgi.hpp
+++ b/lib/stdx/cgi.hpp
@@ -11,7 +11,7 @@
#include <string>
#include <sstream>
-namespace stdx
+namespace astdx
{
namespace web
{
@@ -21,7 +21,7 @@ namespace stdx
cgi_writer& eval_(const std::string& mime, const std::stringstream& ss) noexcept
{
std::printf("Content-Type: %s\r\n", mime.c_str());
- std::printf("Server: %s\r\n", "stdx-cpp-library");
+ std::printf("Server: %s\r\n", "astdx-cpp-library");
std::printf("Content-Length: %ld\r\n\r\n", ss.str().size());
std::printf("%s", ss.str().c_str());
@@ -57,6 +57,6 @@ namespace stdx
}
};
} // namespace web
-} // namespace stdx
+} // namespace astdx
#endif // ifndef _STDX_CGI_HPP \ No newline at end of file