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

Diff for /src/usr.bin/ssh/sftp-client.c between version 1.165 and 1.166

version 1.165, 2022/09/19 10:43:12 version 1.166, 2022/12/16 03:40:03
Line 55 
Line 55 
 extern volatile sig_atomic_t interrupted;  extern volatile sig_atomic_t interrupted;
 extern int showprogress;  extern int showprogress;
   
 /* Default size of buffer for up/download */  /* Default size of buffer for up/download (fix sftp.1 scp.1 if changed) */
 #define DEFAULT_COPY_BUFLEN     32768  #define DEFAULT_COPY_BUFLEN     32768
   
 /* Default number of concurrent outstanding requests */  /* Default number of concurrent xfer requests (fix sftp.1 scp.1 if changed) */
 #define DEFAULT_NUM_REQUESTS    64  #define DEFAULT_NUM_REQUESTS    64
   
 /* Minimum amount of data to read at a time */  /* Minimum amount of data to read at a time */

Legend:
Removed from v.1.165  
changed lines
  Added in v.1.166