about summary refs log tree commit diff stats
path: root/src/tools/http_upload.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/http_upload.h')
-rw-r--r--src/tools/http_upload.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tools/http_upload.h b/src/tools/http_upload.h
index 4e95d4d8..06145a43 100644
--- a/src/tools/http_upload.h
+++ b/src/tools/http_upload.h
@@ -59,6 +59,11 @@ typedef struct http_upload_t
     ProfWin* window;
     pthread_t worker;
     int cancel;
+    // Additional headers
+    // (NULL if they shouldn't be send in the PUT)
+    char* authorization;
+    char* cookie;
+    char* expires;
 } HTTPUpload;
 
 void* http_file_put(void* userdata);