FEATURES 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. _ _ ____ _
  2. ___| | | | _ \| |
  3. / __| | | | |_) | |
  4. | (__| |_| | _ <| |___
  5. \___|\___/|_| \_\_____|
  6. FEATURES
  7. curl tool
  8. - config file support
  9. - multiple URLs in a single command line
  10. - range "globbing" support: [0-13], {one,two,three}
  11. - multiple file upload on a single command line
  12. - custom maximum transfer rate
  13. - redirectable stderr
  14. - metalink support (*13)
  15. libcurl
  16. - full URL syntax with no length limit
  17. - custom maximum download time
  18. - custom least download speed acceptable
  19. - custom output result after completion
  20. - guesses protocol from host name unless specified
  21. - uses .netrc
  22. - progress bar with time statistics while downloading
  23. - "standard" proxy environment variables support
  24. - compiles on win32 (reported builds on 40+ operating systems)
  25. - selectable network interface for outgoing traffic
  26. - IPv6 support on unix and Windows
  27. - persistent connections
  28. - socks5 support
  29. - supports user name and password in proxy environment variables
  30. - operations through proxy "tunnel" (using CONNECT)
  31. - support for large files (>2GB and >4GB) during upload and download
  32. - replaceable memory functions (malloc, free, realloc, etc)
  33. - asynchronous name resolving (*6)
  34. - both a push and a pull style interface
  35. - international domain names (*11)
  36. HTTP
  37. - HTTP/1.1 compliant (optionally uses 1.0)
  38. - GET
  39. - PUT
  40. - HEAD
  41. - POST
  42. - Pipelining
  43. - multipart formpost (RFC1867-style)
  44. - authentication: Basic, Digest, NTLM (*9), GSS-Negotiate/Negotiate (*3) and
  45. SPNEGO (*4) to server and proxy
  46. - resume (both GET and PUT)
  47. - follow redirects
  48. - maximum amount of redirects to follow
  49. - custom HTTP request
  50. - cookie get/send fully parsed
  51. - reads/writes the netscape cookie file format
  52. - custom headers (replace/remove internally generated headers)
  53. - custom user-agent string
  54. - custom referrer string
  55. - range
  56. - proxy authentication
  57. - time conditions
  58. - via http-proxy
  59. - retrieve file modification date
  60. - Content-Encoding support for deflate and gzip
  61. - "Transfer-Encoding: chunked" support in uploads
  62. - data compression (*12)
  63. HTTPS (*1)
  64. - (all the HTTP features)
  65. - using client certificates
  66. - verify server certificate
  67. - via http-proxy
  68. - select desired encryption
  69. - force usage of a specific SSL version (SSLv2 (*7), SSLv3 (*10) or TLSv1)
  70. FTP
  71. - download
  72. - authentication
  73. - kerberos4 (*5)
  74. - kerberos5 (*3)
  75. - active/passive using PORT, EPRT, PASV or EPSV
  76. - single file size information (compare to HTTP HEAD)
  77. - 'type=' URL support
  78. - dir listing
  79. - dir listing names-only
  80. - upload
  81. - upload append
  82. - upload via http-proxy as HTTP PUT
  83. - download resume
  84. - upload resume
  85. - custom ftp commands (before and/or after the transfer)
  86. - simple "range" support
  87. - via http-proxy
  88. - all operations can be tunneled through a http-proxy
  89. - customizable to retrieve file modification date
  90. - no dir depth limit
  91. FTPS (*1)
  92. - implicit ftps:// support that use SSL on both connections
  93. - explicit "AUTH TLS" and "AUTH SSL" usage to "upgrade" plain ftp://
  94. connection to use SSL for both or one of the connections
  95. SCP (*8)
  96. - both password and public key auth
  97. SFTP (*8)
  98. - both password and public key auth
  99. - with custom commands sent before/after the transfer
  100. TFTP
  101. - download
  102. - upload
  103. TELNET
  104. - connection negotiation
  105. - custom telnet options
  106. - stdin/stdout I/O
  107. LDAP (*2)
  108. - full LDAP URL support
  109. DICT
  110. - extended DICT URL support
  111. FILE
  112. - URL support
  113. - upload
  114. - resume
  115. SMTP
  116. - authentication: Plain, Login, CRAM-MD5, Digest-MD5 and NTLM (*9)
  117. - send e-mails
  118. - mail from support
  119. - mail size support
  120. - mail auth support for trusted server-to-server relaying
  121. - multiple recipients
  122. - via http-proxy
  123. SMTPS (*1)
  124. - implicit smtps:// support
  125. - explicit "STARTTLS" usage to "upgrade" plain smtp:// connections to use SSL
  126. - via http-proxy
  127. POP3
  128. - authentication: Clear Text, APOP and SASL
  129. - SASL based authentication: Plain, Login, CRAM-MD5, Digest-MD5 and
  130. NTLM (*9)
  131. - list e-mails
  132. - retrieve e-mails
  133. - enhanced command support for: CAPA, DELE, TOP, STAT, UIDL and NOOP via
  134. custom requests
  135. - via http-proxy
  136. POP3S (*1)
  137. - implicit pop3s:// support
  138. - explicit "STLS" usage to "upgrade" plain pop3:// connections to use SSL
  139. - via http-proxy
  140. IMAP
  141. - authentication: Clear Text and SASL
  142. - SASL based authentication: Plain, Login, CRAM-MD5, Digest-MD5 and
  143. NTLM (*9)
  144. - list the folders of a mailbox
  145. - select a mailbox with support for verifying the UIDVALIDITY
  146. - fetch e-mails with support for specifying the UID and SECTION
  147. - upload e-mails via the append command
  148. - enhanced command support for: EXAMINE, CREATE, DELETE, RENAME, STATUS,
  149. STORE, COPY and UID via custom requests
  150. - via http-proxy
  151. IMAPS (*1)
  152. - implicit imaps:// support
  153. - explicit "STARTTLS" usage to "upgrade" plain imap:// connections to use SSL
  154. - via http-proxy
  155. FOOTNOTES
  156. =========
  157. *1 = requires OpenSSL, GnuTLS, NSS, yassl, axTLS, PolarSSL, WinSSL (native
  158. Windows), Secure Transport (native iOS/OS X) or qssl (native IBM i)
  159. *2 = requires OpenLDAP
  160. *3 = requires a GSSAPI-compliant library, such as Heimdal or similar
  161. *4 = requires FBopenssl
  162. *5 = requires a krb4 library, such as the MIT one or similar
  163. *6 = requires c-ares
  164. *7 = requires OpenSSL, NSS, qssl, WinSSL or Secure Transport; GnuTLS, for
  165. example, only supports SSLv3 and TLSv1
  166. *8 = requires libssh2
  167. *9 = requires OpenSSL, GnuTLS, NSS, yassl, Secure Transport or SSPI (native
  168. Windows)
  169. *10 = requires any of the SSL libraries in (*1) above other than axTLS, which
  170. does not support SSLv3
  171. *11 = requires libidn or Windows
  172. *12 = requires libz
  173. *13 = requires libmetalink, and either an Apple or Microsoft operating
  174. system, or OpenSSL, or GnuTLS, or NSS