aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-04-02 21:24:05 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-04-02 21:24:05 +0000
commit20d33ad7e50ee41020927d30457dd6c1ee975bd0 (patch)
treebe4a064faa9f39b265c788b39fa5309e258e3dbd /CHANGES
parentb8c12fe658be792f852c1c4804a1538ff3ec197f (diff)
Nick Zitzmann made CURLOPT_POSTQUOTE work for SFTP as well.
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES37
1 files changed, 37 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 7d4cf8fa3..3439ceae8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,43 @@
Changelog
+Daniel S (2 April 2007)
+- Nick Zitzmann made the CURLOPT_POSTQUOTE option work for SFTP as well. The
+ accepted commands are as follows:
+
+ chgrp (gid) (path)
+ Changes the group ID of the file or directory at (path) to (gid). (gid)
+ must be a number.
+
+ chmod (perms) (path)
+ Changes the permissions of the file or directory at (path) to
+ (perms). (perms) must be a number in the format used by the chmod Unix
+ command.
+
+ chown (uid) (path)
+ Changes the user ID of the file or directory at (path) to (uid). (uid)
+ must be a number.
+
+ ln (source) (dest)
+ Creates a symbolic link at (dest) that points to the file located at
+ (source).
+
+ mkdir (path)
+ Creates a new directory at (path).
+
+ rename (source) (dest)
+ Moves the file or directory at (source) to (dest).
+
+ rm (path)
+ Deletes the file located at (path).
+
+ rmdir (path)
+ Deletes the directory located at (path). This command will raise an error
+ if the directory is not empty.
+
+ symlink (source) (dest)
+ Same as ln.
+
Daniel S (1 April 2007)
- Robert Iakobashvili made curl_multi_remove_handle() a lot faster when many
easy handles are added to a multi handle, by avoiding the looping over all