starting to creating http lib

This commit is contained in:
2025-09-23 17:18:42 -07:00
parent e8edf944ea
commit 3f86e80e1d
2 changed files with 32 additions and 4 deletions

28
source/Http/http.h Normal file
View File

@@ -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