Change Variable names and all to snake case

This commit is contained in:
Pablu23
2024-11-13 16:01:17 +01:00
parent 1797b3c0ef
commit a3a5280f17
10 changed files with 91 additions and 93 deletions

View File

@@ -3,7 +3,7 @@
#include <string>
namespace http {
class statuscode {
class StatusCode {
public:
enum statusCode {
CONTINUE = 100,
@@ -56,7 +56,7 @@ public:
HTTP_VERSION_NOT_SUPPORTED = 505
};
constexpr static std::string StatusCodeString(const statusCode code) {
constexpr static std::string status_code_string(const statusCode code) {
switch (code) {
case CONTINUE:
return "Continue";