From 3f86e80e1d0a86e5a0c43295f59b667cd4022698 Mon Sep 17 00:00:00 2001 From: PreacherDHM Date: Tue, 23 Sep 2025 17:18:42 -0700 Subject: [PATCH] starting to creating http lib --- source/Http/http.h | 28 ++++++++++++++++++++++++++++ source/main.cpp | 8 ++++---- 2 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 source/Http/http.h diff --git a/source/Http/http.h b/source/Http/http.h new file mode 100644 index 0000000..667e8a5 --- /dev/null +++ b/source/Http/http.h @@ -0,0 +1,28 @@ +/* ############################################################################# + * HTTP.h + * + * This is the http lib for c++/c + * + * AUTHER: PreacherDHM + * 9/23/25 + * ############################################################################# + * */ +#ifndef HTTP_H +#define HTTP_H + +#ifndef HTTP_PACKET_SIZE +#define HTTP_PACKER_SIZE 1024 +#endif + +#ifndef HTTP_ENVIRMENT_PATH +#define HTTP_ENVIRMENT_PATH "./web" +#endif + +typedef struct { +}HttpRequestHeader; +typedef struct { +}HttpResponseHeader; + +// HTTP Envirment + +#endif diff --git a/source/main.cpp b/source/main.cpp index 3a57edd..2111430 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -1,9 +1,9 @@ /* ############################################################################# - * # PROJECT_NAME - * DESCRIPTION + * # WorldDesigned + * This is a pice of software that alows you to create ttrpg wrolds. * - * AUTHER: NAME - * DATE: MM/DD/YY + * AUTHER: PreacherDHM + * DATE: 9/23/25 * ############################################################################# */