2017-09-03 00:47:10 +08:00
|
|
|
.\" **************************************************************************
|
|
|
|
.\" * _ _ ____ _
|
|
|
|
.\" * Project ___| | | | _ \| |
|
|
|
|
.\" * / __| | | | |_) | |
|
|
|
|
.\" * | (__| |_| | _ <| |___
|
|
|
|
.\" * \___|\___/|_| \_\_____|
|
|
|
|
.\" *
|
2023-01-02 20:51:48 +08:00
|
|
|
.\" * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2017-09-03 00:47:10 +08:00
|
|
|
.\" *
|
|
|
|
.\" * This software is licensed as described in the file COPYING, which
|
|
|
|
.\" * you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
.\" * are also available at https://curl.se/docs/copyright.html.
|
2017-09-03 00:47:10 +08:00
|
|
|
.\" *
|
|
|
|
.\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
.\" * copies of the Software, and permit persons to whom the Software is
|
|
|
|
.\" * furnished to do so, under the terms of the COPYING file.
|
|
|
|
.\" *
|
|
|
|
.\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
.\" * KIND, either express or implied.
|
|
|
|
.\" *
|
|
|
|
.\" * SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
.\" *
|
2017-09-03 00:47:10 +08:00
|
|
|
.\" **************************************************************************
|
2023-04-26 14:58:35 +08:00
|
|
|
.TH curl_mime_addpart 3 "22 August 2017" "libcurl" "libcurl"
|
2017-09-03 00:47:10 +08:00
|
|
|
.SH NAME
|
|
|
|
curl_mime_addpart - append a new empty part to a mime structure
|
|
|
|
.SH SYNOPSIS
|
2021-11-26 21:20:18 +08:00
|
|
|
.nf
|
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
curl_mimepart *curl_mime_addpart(curl_mime *mime);
|
|
|
|
.fi
|
2017-09-03 00:47:10 +08:00
|
|
|
.SH DESCRIPTION
|
2017-09-04 15:20:24 +08:00
|
|
|
\fIcurl_mime_addpart(3)\fP creates and appends a new empty part to the given
|
2021-11-26 15:46:59 +08:00
|
|
|
mime structure and returns a handle to it. The returned part handle can
|
2017-09-04 15:20:24 +08:00
|
|
|
subsequently be populated using functions from the mime API.
|
2017-09-03 00:47:10 +08:00
|
|
|
|
|
|
|
\fImime\fP is the handle of the mime structure in which the new part must be
|
|
|
|
appended.
|
2017-09-05 17:14:42 +08:00
|
|
|
.SH EXAMPLE
|
|
|
|
.nf
|
2017-09-05 17:41:03 +08:00
|
|
|
curl_mime *mime;
|
|
|
|
curl_mimepart *part;
|
2017-09-05 17:14:42 +08:00
|
|
|
|
|
|
|
/* create a mime handle */
|
|
|
|
mime = curl_mime_init(easy);
|
|
|
|
|
|
|
|
/* add a part */
|
|
|
|
part = curl_mime_addpart(mime);
|
|
|
|
|
|
|
|
/* continue and set name + data to the part */
|
|
|
|
curl_mime_data(part, "This is the field data", CURL_ZERO_TERMINATED);
|
2017-09-22 08:08:29 +08:00
|
|
|
curl_mime_name(part, "data");
|
2017-09-05 17:14:42 +08:00
|
|
|
.fi
|
2021-10-25 14:54:08 +08:00
|
|
|
.SH AVAILABILITY
|
|
|
|
As long as at least one of HTTP, SMTP or IMAP is enabled. Added in 7.56.0.
|
|
|
|
.SH RETURN VALUE
|
|
|
|
A mime part structure handle, or NULL upon failure.
|
2017-09-03 00:47:10 +08:00
|
|
|
.SH "SEE ALSO"
|
2023-09-27 05:25:11 +08:00
|
|
|
.BR curl_mime_data (3),
|
|
|
|
.BR curl_mime_data_cb (3),
|
|
|
|
.BR curl_mime_encoder (3),
|
|
|
|
.BR curl_mime_filedata (3),
|
|
|
|
.BR curl_mime_filename (3),
|
|
|
|
.BR curl_mime_headers (3),
|
|
|
|
.BR curl_mime_init (3),
|
|
|
|
.BR curl_mime_name (3),
|
|
|
|
.BR curl_mime_subparts (3),
|
|
|
|
.BR curl_mime_type (3)
|