From 20d33ad7e50ee41020927d30457dd6c1ee975bd0 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 2 Apr 2007 21:24:05 +0000 Subject: Nick Zitzmann made CURLOPT_POSTQUOTE work for SFTP as well. --- CHANGES | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) (limited to 'CHANGES') 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 -- cgit v1.2.3