[BACK]Return to sftp-common.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/sftp-common.h between version 1.1 and 1.1.6.2

version 1.1, 2001/02/04 11:11:54 version 1.1.6.2, 2002/03/09 00:20:45
Line 38 
Line 38 
         u_int32_t       mtime;          u_int32_t       mtime;
 };  };
   
 /* Clear contents of attributes structure */  void     attrib_clear(Attrib *);
 void attrib_clear(Attrib *a);  void     stat_to_attrib(struct stat *, Attrib *);
   Attrib  *decode_attrib(Buffer *);
   void     encode_attrib(Buffer *, Attrib *);
   
 /* Convert from struct stat to filexfer attribs */  const char *fx2txt(int);
 void stat_to_attrib(struct stat *st, Attrib *a);  
   
 /* Decode attributes in buffer */  
 Attrib *decode_attrib(Buffer *b);  
   
 /* Encode attributes to buffer */  
 void encode_attrib(Buffer *b, Attrib *a);  
   
 /* Convert from SSH2_FX_ status to text error message */  
 const char *fx2txt(int status);  
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.1.6.2