mirror of
https://github.com/curl/curl.git
synced 2026-07-24 01:47:20 +03:00
smb: return error on upload without size
The protocol needs to know the size ahead of time, this is now a known restriction and not a bug. Also output a clearer error if the URL path does not contain proper share. Ref: #7896 Closes #10484
This commit is contained in:
parent
5309e32141
commit
efbf02111a
3 changed files with 9 additions and 5 deletions
|
|
@ -45,7 +45,6 @@ problems may have been fixed or changed somewhat since this was written.
|
|||
5.6 make distclean loops forever
|
||||
5.8 configure finding libs in wrong directory
|
||||
5.9 Utilize Requires.private directives in libcurl.pc
|
||||
5.10 curl hangs on SMB upload over stdin
|
||||
5.11 configure --with-gssapi with Heimdal is ignored on macOS
|
||||
5.12 flaky Windows CI builds
|
||||
5.13 long paths are not fully supported on Windows
|
||||
|
|
@ -332,10 +331,6 @@ problems may have been fixed or changed somewhat since this was written.
|
|||
|
||||
https://github.com/curl/curl/issues/864
|
||||
|
||||
5.10 curl hangs on SMB upload over stdin
|
||||
|
||||
See https://github.com/curl/curl/issues/7896
|
||||
|
||||
5.11 configure --with-gssapi with Heimdal is ignored on macOS
|
||||
|
||||
... unless you also pass --with-gssapi-libs
|
||||
|
|
|
|||
|
|
@ -360,6 +360,9 @@ share and directory or the share to upload to and as such, may not be omitted.
|
|||
If the user name is embedded in the URL then it must contain the domain name
|
||||
and as such, the backslash must be URL encoded as %2f.
|
||||
|
||||
When uploading to SMB, the size of the file needs to be known ahead of time,
|
||||
meaning that you can upload a file passed to curl over a pipe like stdin.
|
||||
|
||||
curl supports SMB version 1 (only)
|
||||
|
||||
## SMTP
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue