|
void | urlencode_lut_init (void) |
|
void | net_http_urlencode (char **dest, const char *source) |
|
void | net_http_urlencode_full (char *dest, const char *source, size_t size) |
|
static int | net_http_new_socket (struct http_connection_t *conn) |
|
static void | net_http_send_str (struct http_socket_state_t *sock_state, bool *error, const char *text) |
|
struct http_connection_t * | net_http_connection_new (const char *url, const char *method, const char *data) |
|
bool | net_http_connection_iterate (struct http_connection_t *conn) |
|
bool | net_http_connection_done (struct http_connection_t *conn) |
|
void | net_http_connection_free (struct http_connection_t *conn) |
|
const char * | net_http_connection_url (struct http_connection_t *conn) |
|
struct http_t * | net_http_new (struct http_connection_t *conn) |
|
int | net_http_fd (struct http_t *state) |
|
bool | net_http_update (struct http_t *state, size_t *progress, size_t *total) |
|
int | net_http_status (struct http_t *state) |
|
uint8_t * | net_http_data (struct http_t *state, size_t *len, bool accept_error) |
|
void | net_http_delete (struct http_t *state) |
|
bool | net_http_error (struct http_t *state) |
|