13 lines
317 B
C
13 lines
317 B
C
#ifndef HTTP_SOCKET_H
|
|
#define HTTP_SOCKET_H
|
|
|
|
#include "../common/http_message.h"
|
|
|
|
#define HTTP_VERSION "HTTP/1.1"
|
|
#define MIN_PORT 1
|
|
#define MAX_PORT 65535
|
|
|
|
struct http_message build_basic_request(const char *method, const char *host, const char *path, int port);
|
|
char *send_request(struct http_message req);
|
|
|
|
#endif
|