Displaying 1 result from an estimated 1 matches for "ssh2_fxe_extattr_dev".
2009 Feb 12
2
[patch 1/3] add protocol extension to ATTR message
...t_ctime;
+ a->ext_flags |= SSH2_FXE_EXTATTR_ATIMENSEC;
+ a->atimensec = st->st_atimensec;
+ a->ext_flags |= SSH2_FXE_EXTATTR_MTIMENSEC;
+ a->mtimensec = st->st_mtimensec;
+ a->ext_flags |= SSH2_FXE_EXTATTR_CTIMENSEC;
+ a->ctimensec = st->st_ctimensec;
+ a->ext_flags |= SSH2_FXE_EXTATTR_DEV;
+ a->dev = st->st_dev;
+ a->ext_flags |= SSH2_FXE_EXTATTR_INO;
+ a->ino = st->st_ino;
+ a->ext_flags |= SSH2_FXE_EXTATTR_NLINK;
+ a->nlink = st->st_nlink;
+ if (S_ISCHR(st->st_mode) || S_ISBLK(st->st_mode)) {
+ a->ext_flags |= SSH2_FXE_EXTATTR_RDEV;
+ a->rdev...