diff options
author | Fredrik Gustafsson <[email protected]> | 2012-11-27 15:33:47 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2012-11-27 15:33:47 +0100 |
commit | 9971f38968b19ba90e0267b8c7a549fc568d5611 (patch) | |
tree | 81da409d5262ddf2ca4525788be60c6be3d08552 /lib/ssh/src/ssh_xfer.hrl | |
parent | 2d974c56b23a7544b13f78061850a877316ae938 (diff) | |
download | otp-9971f38968b19ba90e0267b8c7a549fc568d5611.tar.gz otp-9971f38968b19ba90e0267b8c7a549fc568d5611.tar.bz2 otp-9971f38968b19ba90e0267b8c7a549fc568d5611.zip |
Basic functionality for sftp ver6 and testcase
Diffstat (limited to 'lib/ssh/src/ssh_xfer.hrl')
-rw-r--r-- | lib/ssh/src/ssh_xfer.hrl | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/ssh/src/ssh_xfer.hrl b/lib/ssh/src/ssh_xfer.hrl index c13950eb6e..0d85cf2094 100644 --- a/lib/ssh/src/ssh_xfer.hrl +++ b/lib/ssh/src/ssh_xfer.hrl @@ -58,7 +58,6 @@ %%% # SSH_FX_xxx %%% Description: Response packet types for file transfer protocol. %%%---------------------------------------------------------------------- - -define(SSH_FX_OK, 0). -define(SSH_FX_EOF, 1). -define(SSH_FX_NO_SUCH_FILE, 2). @@ -79,7 +78,18 @@ -define(SSH_FX_LOCK_CONFlICT, 17). -define(SSH_FX_DIR_NOT_EMPTY, 18). -define(SSH_FX_NOT_A_DIRECTORY, 19). +-define(SSH_FX_INVALID_FILENAME, 20). +-define(SSH_FX_LINK_LOOP, 21). +-define(SSH_FX_CANNOT_DELETE, 22). +-define(SSH_FX_INVALID_PARAMETER, 23). -define(SSH_FX_FILE_IS_A_DIRECTORY, 24). +-define(SSH_FX_BYTE_RANGE_LOCK_CONFLICT,25). +-define(SSH_FX_BYTE_RANGE_LOCK_REFUSED, 26). +-define(SSH_FX_DELETE_PENDING, 27). +-define(SSH_FX_FILE_CORRUPT, 28). +-define(SSH_FX_OWNER_INVALID, 29). +-define(SSH_FX_GROUP_INVALID, 30). +-define(SSH_FX_NO_MATCHING_BYTE_RANGE_LOCK,31). %%%---------------------------------------------------------------------- %%% # SSH_FILEXFER_xxx |