From 7bc56921bb59fe4159bccff45f567f989cf3c999 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 31 Mar 2025 12:46:24 +0200 Subject: meta: rename to astdx, to avoid future confusions. --- lib/stdx/cgi.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/stdx/cgi.hpp') 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 #include -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 -- cgit v1.2.3