summaryrefslogtreecommitdiffhomepage
path: root/lib/stdx/cgi.hpp
diff options
context:
space:
mode:
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