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

Diff for /src/usr.bin/ssh/sftp-client.h between version 1.23 and 1.24

version 1.23, 2013/10/11 02:53:45 version 1.24, 2013/10/17 00:30:13
Line 100 
Line 100 
 /* Rename 'oldpath' to 'newpath' */  /* Rename 'oldpath' to 'newpath' */
 int do_symlink(struct sftp_conn *, char *, char *);  int do_symlink(struct sftp_conn *, char *, char *);
   
   /* Call fsync() on open file 'handle' */
   int do_fsync(struct sftp_conn *conn, char *, u_int);
   
 /*  /*
  * Download 'remote_path' to 'local_path'. Preserve permissions and times   * Download 'remote_path' to 'local_path'. Preserve permissions and times
  * if 'pflag' is set   * if 'pflag' is set
  */   */
 int do_download(struct sftp_conn *, char *, char *, Attrib *, int, int);  int do_download(struct sftp_conn *, char *, char *, Attrib *, int, int, int);
   
 /*  /*
  * Recursively download 'remote_directory' to 'local_directory'. Preserve   * Recursively download 'remote_directory' to 'local_directory'. Preserve
  * times if 'pflag' is set   * times if 'pflag' is set
  */   */
 int download_dir(struct sftp_conn *, char *, char *, Attrib *, int, int, int);  int download_dir(struct sftp_conn *, char *, char *, Attrib *, int,
       int, int, int);
   
 /*  /*
  * Upload 'local_path' to 'remote_path'. Preserve permissions and times   * Upload 'local_path' to 'remote_path'. Preserve permissions and times
  * if 'pflag' is set   * if 'pflag' is set
  */   */
 int do_upload(struct sftp_conn *, char *, char *, int);  int do_upload(struct sftp_conn *, char *, char *, int, int);
   
 /*  /*
  * Recursively upload 'local_directory' to 'remote_directory'. Preserve   * Recursively upload 'local_directory' to 'remote_directory'. Preserve
  * times if 'pflag' is set   * times if 'pflag' is set
  */   */
 int upload_dir(struct sftp_conn *, char *, char *, int, int);  int upload_dir(struct sftp_conn *, char *, char *, int, int, int);
   
 /* Concatenate paths, taking care of slashes. Caller must free result. */  /* Concatenate paths, taking care of slashes. Caller must free result. */
 char *path_append(char *, char *);  char *path_append(char *, char *);

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24