15 lines
281 B
C
Executable File
15 lines
281 B
C
Executable File
#ifndef HTTP_REL
|
|
#define HTTP_REL
|
|
|
|
#include "config.h"
|
|
#include "memctl/memctl.h"
|
|
|
|
typedef struct httpbuf{
|
|
int size;
|
|
char buf[MEM_BLOCK_SIZE-5];
|
|
}httpbuf;//http分块结构体
|
|
|
|
char *recv_http_request(int cfd);
|
|
int init_http_network(int port, log_manager *logger);
|
|
|
|
#endif |