Move http_transfer_info to task_http.c
This commit is contained in:
parent
ae478b71b7
commit
824315865f
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue