[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.2 and 1.3

version 1.2, 2001/06/26 06:33:01 version 1.3, 2001/06/26 17:27:24
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 *);  void     stat_to_attrib(struct stat *, Attrib *);
   Attrib  *decode_attrib(Buffer *);
   void     encode_attrib(Buffer *, Attrib *);
   
 /* Convert from struct stat to filexfer attribs */  
 void stat_to_attrib(struct stat *, Attrib *);  
   
 /* Decode attributes in buffer */  
 Attrib *decode_attrib(Buffer *);  
   
 /* Encode attributes to buffer */  
 void encode_attrib(Buffer *, Attrib *);  
   
 /* Convert from SSH2_FX_ status to text error message */  
 const char *fx2txt(int);  const char *fx2txt(int);
   

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3