Displaying 1 result from an estimated 1 matches for "ssh2_fxe_extattr_mtime".
Did you mean:
ssh2_fxe_extattr_atime
2009 Feb 12
2
[patch 1/3] add protocol extension to ATTR message
...e;
a->flags |= SSH2_FILEXFER_ATTR_UIDGID;
@@ -69,8 +81,32 @@ stat_to_attrib(const struct stat *st, At
a->flags |= SSH2_FILEXFER_ATTR_PERMISSIONS;
a->perm = st->st_mode;
a->flags |= SSH2_FILEXFER_ATTR_ACMODTIME;
+ a->ext_flags |= SSH2_FXE_EXTATTR_ATIME;
+ a->ext_flags |= SSH2_FXE_EXTATTR_MTIME;
a->atime = st->st_atime;
a->mtime = st->st_mtime;
+ a->ext_flags |= SSH2_FXE_EXTATTR_CTIME;
+ a->ctime = st->st_ctime;
+ a->ext_flags |= SSH2_FXE_EXTATTR_ATIMENSEC;
+ a->atimensec = st->st_atimensec;
+ a->ext_flags |= SSH2_FXE_EXTATTR_MTIMENSEC;
+ a->mtimens...