starting to creating http lib
This commit is contained in:
28
source/Http/http.h
Normal file
28
source/Http/http.h
Normal 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
|
||||
@@ -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
|
||||
* #############################################################################
|
||||
*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user