12 lines
317 B
C
12 lines
317 B
C
#ifndef HTTP_CLIENT_H
|
|
#define HTTP_CLIENT_H
|
|
|
|
#define RTT_FLAG "-p"
|
|
#define USAGE_STRING "Usage: ./http_client [-p] server_url port_number\n"
|
|
#define PORT_ERROR "Port must be a number in the range 1-65535"
|
|
#define PROTO_PREFIX "http://"
|
|
|
|
void get_parts(const char *dest, char *path_buffer, char *host_buffer);
|
|
|
|
#endif
|