From 84ad1fd3047815f9c6e78728bb351b828eac10b1 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 4 Feb 2018 09:23:11 +0100 Subject: formdata: use the mime-content type function Reduce code duplication by making Curl_mime_contenttype available and used by the formdata function. This also makes the formdata function recognize a set of more file extensions by default. PR #2280 brought this to my attention. Closes #2282 --- lib/mime.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/mime.h') diff --git a/lib/mime.h b/lib/mime.h index 920a8a77a..4d5c70404 100644 --- a/lib/mime.h +++ b/lib/mime.h @@ -30,6 +30,10 @@ #define MIME_USERHEADERS_OWNER (1 << 0) #define MIME_BODY_ONLY (1 << 1) +#define FILE_CONTENTTYPE_DEFAULT "application/octet-stream" +#define MULTIPART_CONTENTTYPE_DEFAULT "multipart/mixed" +#define DISPOSITION_DEFAULT "attachment" + /* Part source kinds. */ enum mimekind { MIMEKIND_NONE = 0, /* Part not set. */ @@ -134,5 +138,6 @@ size_t Curl_mime_read(char *buffer, size_t size, size_t nitems, void *instream); CURLcode Curl_mime_rewind(curl_mimepart *part); CURLcode Curl_mime_add_header(struct curl_slist **slp, const char *fmt, ...); +const char *Curl_mime_contenttype(const char *filename); #endif /* HEADER_CURL_MIME_H */ -- cgit v1.2.3