Move http_transfer_info to task_http.c

This commit is contained in:
twinaphex 2016-05-19 00:04:38 +02:00
parent ae478b71b7
commit 824315865f
2 changed files with 6 additions and 6 deletions

View File

@ -38,6 +38,12 @@ enum http_status_enum
HTTP_STATUS_TRANSFER_PARSE_FREE
};
typedef struct http_transfer_info
{
char url[PATH_MAX_LENGTH];
int progress;
} http_transfer_info_t;
typedef struct http_handle
{
struct

View File

@ -61,12 +61,6 @@ typedef struct
char *data;
size_t len;
} http_transfer_data_t;
typedef struct http_transfer_info
{
char url[PATH_MAX_LENGTH];
int progress;
} http_transfer_info_t;
#endif
typedef struct nbio_image_handle nbio_image_handle_t;