From 9ea6ace0d031396107d38cdb427ac01ae2b5c021 Mon Sep 17 00:00:00 2001 From: Andrea Gilardoni Date: Wed, 13 Mar 2024 13:29:03 +0100 Subject: [PATCH] moving http_parser from utility to utility/URLParser --- .codespellrc | 2 +- src/URLParser.h | 2 +- src/utility/{ => URLParser}/LICENSE | 0 src/utility/{ => URLParser}/README.md | 0 src/utility/{ => URLParser}/http_parser.c | 0 src/utility/{ => URLParser}/http_parser.h | 0 6 files changed, 2 insertions(+), 2 deletions(-) rename src/utility/{ => URLParser}/LICENSE (100%) rename src/utility/{ => URLParser}/README.md (100%) rename src/utility/{ => URLParser}/http_parser.c (100%) rename src/utility/{ => URLParser}/http_parser.h (100%) diff --git a/.codespellrc b/.codespellrc index 2fcb936..c5233c0 100644 --- a/.codespellrc +++ b/.codespellrc @@ -4,4 +4,4 @@ ignore-words-list = , check-filenames = check-hidden = -skip = ./.git,./src/utility \ No newline at end of file +skip = ./.git,./src/utility/URLParser diff --git a/src/URLParser.h b/src/URLParser.h index 0424592..fd31e93 100644 --- a/src/URLParser.h +++ b/src/URLParser.h @@ -30,7 +30,7 @@ #ifndef _MBED_HTTP_PARSED_URL_H_ #define _MBED_HTTP_PARSED_URL_H_ -#include "utility/http_parser.h" +#include "utility/URLParser/http_parser.h" class ParsedUrl { public: diff --git a/src/utility/LICENSE b/src/utility/URLParser/LICENSE similarity index 100% rename from src/utility/LICENSE rename to src/utility/URLParser/LICENSE diff --git a/src/utility/README.md b/src/utility/URLParser/README.md similarity index 100% rename from src/utility/README.md rename to src/utility/URLParser/README.md diff --git a/src/utility/http_parser.c b/src/utility/URLParser/http_parser.c similarity index 100% rename from src/utility/http_parser.c rename to src/utility/URLParser/http_parser.c diff --git a/src/utility/http_parser.h b/src/utility/URLParser/http_parser.h similarity index 100% rename from src/utility/http_parser.h rename to src/utility/URLParser/http_parser.h