29 lines
520 B
C
29 lines
520 B
C
/* #############################################################################
|
|
* 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
|