mirror of
https://github.com/curl/curl.git
synced 2026-08-25 10:03:37 +03:00
mime: new MIME API.
Available in HTTP, SMTP and IMAP. Deprecates the FORM API. See CURLOPT_MIMEPOST. Lib code and associated documentation.
This commit is contained in:
parent
5bae72734b
commit
ce0881edee
38 changed files with 2946 additions and 994 deletions
|
|
@ -146,6 +146,7 @@ int test(char *URL)
|
|||
char *stringpointerextra=(char *)"moooo";
|
||||
struct curl_slist *slist=NULL;
|
||||
struct curl_httppost *httppost=NULL;
|
||||
curl_mime *mimepost = NULL;
|
||||
FILE *stream = stderr;
|
||||
struct data object;
|
||||
char *charp;
|
||||
|
|
@ -216,6 +217,9 @@ while(<STDIN>) {
|
|||
elsif($name eq "HTTPPOST") {
|
||||
print "${pref} httppost);\n$check";
|
||||
}
|
||||
elsif($name eq "MIMEPOST") {
|
||||
print "${pref} mimepost);\n$check";
|
||||
}
|
||||
elsif($name eq "STDERR") {
|
||||
print "${pref} stream);\n$check";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue