Reformat HTTP get URL to AESGCM scheme

This commit is contained in:
William Wennerström
2020-06-27 20:23:50 +02:00
parent 39c3290613
commit e9d5875782
3 changed files with 100 additions and 31 deletions

View File

@@ -50,10 +50,12 @@ typedef struct http_upload_t {
FILE *filehandle;
off_t filesize;
curl_off_t bytes_sent;
char* mime_type;
char* get_url;
char* put_url;
ProfWin* window;
char *mime_type;
char *get_url;
char *put_url;
char *alt_scheme;
char *alt_fragment;
ProfWin *window;
pthread_t worker;
int cancel;
} HTTPUpload;