14 lines
237 B
C
14 lines
237 B
C
#ifndef HTTP_REL
|
|
#define HTTP_REL
|
|
|
|
#include "config.h"
|
|
|
|
typedef struct httpbuf{
|
|
char *buf;
|
|
int size;
|
|
}httpbuf;//http分块结构体
|
|
|
|
char *recv_http_request(int cfd);
|
|
int init_http_network(int port, log_manager *logger);
|
|
|
|
#endif |