Files
chat_rebot-connect-with-one…/c/network/http/http_rel.h
2026-02-09 09:32:42 +08:00

14 lines
237 B
C
Executable File

#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