summaryrefslogtreecommitdiff
path: root/PROTOCOL
diff options
context:
space:
mode:
authordtucker <dtucker>2008-06-09 13:47:37 +0000
committerdtucker <dtucker>2008-06-09 13:47:37 +0000
commit49ebdcf4cfe5c3f04bb9cd45afa9da8989d51c8b (patch)
tree2e8ee91fcd4eecdd99a1d5ae72adc6cf877ed9c2 /PROTOCOL
parent8f61cbbf921271fd06353712bc8ce2ca3be3ba33 (diff)
downloadopenssh-49ebdcf4cfe5c3f04bb9cd45afa9da8989d51c8b.tar.gz
- djm@cvs.openbsd.org 2008/06/07 21:52:46
[PROTOCOL] statvfs member fsid needs to be wider, increase it to 64 bits and crank extension revision number to 2; prodded and ok dtucker@
Diffstat (limited to 'PROTOCOL')
-rw-r--r--PROTOCOL7
1 files changed, 5 insertions, 2 deletions
diff --git a/PROTOCOL b/PROTOCOL
index 5a9404e9..abe21767 100644
--- a/PROTOCOL
+++ b/PROTOCOL
@@ -141,7 +141,7 @@ return the following SSH_FXP_EXTENDED_REPLY reply:
uint64 f_files /* total file inodes */
uint64 f_ffree /* free file inodes */
uint64 f_favail /* free file inodes for to non-root */
- uint32 f_fsid /* file system id */
+ uint64 f_fsid /* file system id */
uint32 f_flag /* bit mask of f_flag values */
uint32 f_namemax /* maximum filename length */
@@ -150,5 +150,8 @@ The values of the f_flag bitmask are as follows:
#define SSH_FXE_STATVFS_ST_RDONLY 0x1 /* read-only */
#define SSH_FXE_STATVFS_ST_NOSUID 0x2 /* no setuid */
-$Id: PROTOCOL,v 1.1 2008/05/19 06:11:56 djm Exp $
+This extension is advertised in the SSH_FXP_VERSION hello with version
+"2".
+
+$Id: PROTOCOL,v 1.2 2008/06/09 13:47:37 dtucker Exp $