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

Diff for /src/usr.bin/ssh/packet.c between version 1.311 and 1.312

version 1.311, 2023/08/28 03:28:43 version 1.312, 2023/08/28 03:31:16
Line 2060 
Line 2060 
                 return sshbuf_len(ssh->state->output) < 128 * 1024;                  return sshbuf_len(ssh->state->output) < 128 * 1024;
 }  }
   
   /*
    * returns true when there are at most a few keystrokes of data to write
    * and the connection is in interactive mode.
    */
   
   int
   ssh_packet_interactive_data_to_write(struct ssh *ssh)
   {
           return ssh->state->interactive_mode &&
               sshbuf_len(ssh->state->output) < 256;
   }
   
 void  void
 ssh_packet_set_tos(struct ssh *ssh, int tos)  ssh_packet_set_tos(struct ssh *ssh, int tos)
 {  {

Legend:
Removed from v.1.311  
changed lines
  Added in v.1.312