RetroArch
|
Go to the source code of this file.
Functions | |
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) |
bool | net_http_error (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) |
void | net_http_urlencode (char **dest, const char *source) |
void | net_http_urlencode_full (char *dest, const char *source, size_t size) |
bool net_http_connection_done | ( | struct http_connection_t * | conn | ) |
void net_http_connection_free | ( | struct http_connection_t * | conn | ) |
bool net_http_connection_iterate | ( | struct http_connection_t * | conn | ) |
struct http_connection_t* net_http_connection_new | ( | const char * | url, |
const char * | method, | ||
const char * | data | ||
) |
const char* net_http_connection_url | ( | struct http_connection_t * | conn | ) |
int net_http_fd | ( | struct http_t * | state | ) |
struct http_t* net_http_new | ( | struct http_connection_t * | conn | ) |
int net_http_status | ( | struct http_t * | state | ) |