curl_mime_filename.3 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at https://curl.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" **************************************************************************
  22. .TH curl_mime_filename 3 "22 August 2017" "libcurl 7.56.0" "libcurl Manual"
  23. .SH NAME
  24. curl_mime_filename - set a mime part's remote file name
  25. .SH SYNOPSIS
  26. .B #include <curl/curl.h>
  27. .sp
  28. .BI "CURLcode curl_mime_filename(curl_mimepart * " part ,
  29. .BI "const char * " filename ");"
  30. .ad
  31. .SH DESCRIPTION
  32. \fIcurl_mime_filename(3)\fP sets a mime part's remote file name. When remote
  33. file name is set, content data is processed as a file, whatever is the part's
  34. content source. A part's remote file name is transmitted to the server in the
  35. associated Content-Disposition generated header.
  36. \fIpart\fP is the part's handle to assign the remote file name to.
  37. \fIfilename\fP points to the null-terminated file name string; it may be set
  38. to NULL to remove a previously attached remote file name.
  39. The remote file name string is copied into the part, thus the associated
  40. storage may safely be released or reused after call. Setting a part's file
  41. name twice is valid: only the value set by the last call is retained.
  42. .SH AVAILABILITY
  43. As long as at least one of HTTP, SMTP or IMAP is enabled. Added in 7.56.0.
  44. .SH RETURN VALUE
  45. CURLE_OK or a CURL error code upon failure.
  46. .SH EXAMPLE
  47. .nf
  48. curl_mime *mime;
  49. curl_mimepart *part;
  50. /* create a mime handle */
  51. mime = curl_mime_init(easy);
  52. /* add a part */
  53. part = curl_mime_addpart(mime);
  54. /* send image data from memory */
  55. curl_mime_data(part, imagebuf, imagebuf_len);
  56. /* set a file name to make it look like a file upload */
  57. curl_mime_filename(part, "image.png");
  58. /* set name */
  59. curl_mime_name(part, "data");
  60. .fi
  61. .SH "SEE ALSO"
  62. .BR curl_mime_addpart "(3),"
  63. .BR curl_mime_filedata "(3),"
  64. .BR curl_mime_data "(3)"