diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-27 12:41:09 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-27 12:41:09 +0200 |
| commit | c4f4155f6f5a30641180050a1a5ea8967f6392fa (patch) | |
| tree | f08c8bff002eecbdceba297e72a8842487a6b686 /dev/lib/utility | |
| parent | b4f35dbe44e07b597c3e7bb6d7562757069a7cb4 (diff) | |
feat: final refactors (SOCL -> OCL)
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/lib/utility')
| -rw-r--r-- | dev/lib/utility/cgi_writer.hpp | 2 | ||||
| -rw-r--r-- | dev/lib/utility/chunk_string.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dev/lib/utility/cgi_writer.hpp b/dev/lib/utility/cgi_writer.hpp index 12de9ec..126b299 100644 --- a/dev/lib/utility/cgi_writer.hpp +++ b/dev/lib/utility/cgi_writer.hpp @@ -26,7 +26,7 @@ namespace ocl std::basic_stringstream<char_type> ss_out; ss_out << std::format("Content-Type: {}\r\n", mime.str()); - ss_out << std::format("Server: {}\r\n", "SOCL-CGI/1.0"); + ss_out << std::format("Server: {}\r\n", "OCL-CGI/1.0"); ss_out << std::format("Content-Length: {}\r\n\r\n", ss.str().size()); ss_out << ss.str(); diff --git a/dev/lib/utility/chunk_string.hpp b/dev/lib/utility/chunk_string.hpp index 79a3881..e04166c 100644 --- a/dev/lib/utility/chunk_string.hpp +++ b/dev/lib/utility/chunk_string.hpp @@ -1,6 +1,6 @@ /* * File: core/chunk_string.hpp - * Purpose: String implementation for the SOCL C++ library. + * Purpose: String implementation for the OCL C++ library. * Author: Amlal El Mahrouss (amlal@nekernel.org) * Copyright 2025, Amlal El Mahrouss */ |
