diff options
author | Darren Tucker <dtucker@zip.com.au> | 2008-06-09 23:47:37 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2008-06-09 23:47:37 +1000 |
commit | 17ec5d4e028398113b4c6fda654faf65e8c27e64 (patch) | |
tree | 115dbb85ded552b9e66e23222632c1b31c4ff92f | |
parent | 3463acaebfe90c10d22c0baaff556559bfd66fd6 (diff) |
- 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@
-rw-r--r-- | PROTOCOL | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -141,7 +141,7 @@ return the following SSH_FXP_EXTENDED_REPLY reply: | |||
141 | uint64 f_files /* total file inodes */ | 141 | uint64 f_files /* total file inodes */ |
142 | uint64 f_ffree /* free file inodes */ | 142 | uint64 f_ffree /* free file inodes */ |
143 | uint64 f_favail /* free file inodes for to non-root */ | 143 | uint64 f_favail /* free file inodes for to non-root */ |
144 | uint32 f_fsid /* file system id */ | 144 | uint64 f_fsid /* file system id */ |
145 | uint32 f_flag /* bit mask of f_flag values */ | 145 | uint32 f_flag /* bit mask of f_flag values */ |
146 | uint32 f_namemax /* maximum filename length */ | 146 | uint32 f_namemax /* maximum filename length */ |
147 | 147 | ||
@@ -150,5 +150,8 @@ The values of the f_flag bitmask are as follows: | |||
150 | #define SSH_FXE_STATVFS_ST_RDONLY 0x1 /* read-only */ | 150 | #define SSH_FXE_STATVFS_ST_RDONLY 0x1 /* read-only */ |
151 | #define SSH_FXE_STATVFS_ST_NOSUID 0x2 /* no setuid */ | 151 | #define SSH_FXE_STATVFS_ST_NOSUID 0x2 /* no setuid */ |
152 | 152 | ||
153 | $Id: PROTOCOL,v 1.1 2008/05/19 06:11:56 djm Exp $ | 153 | This extension is advertised in the SSH_FXP_VERSION hello with version |
154 | "2". | ||
155 | |||
156 | $Id: PROTOCOL,v 1.2 2008/06/09 13:47:37 dtucker Exp $ | ||
154 | 157 | ||