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

Diff for /src/usr.bin/ssh/packet.h between version 1.3 and 1.4

version 1.3, 1999/11/15 21:38:54 version 1.4, 1999/11/19 19:58:18
Line 147 
Line 147 
 /* Returns true if there is not too much data to write to the connection. */  /* Returns true if there is not too much data to write to the connection. */
 int packet_not_very_much_data_to_write(void);  int packet_not_very_much_data_to_write(void);
   
   /* maximum packet size, requested by client with SSH_CMSG_MAX_PACKET_SIZE */
   extern int max_packet_size;
   int packet_set_maxsize(int s);
   #define packet_get_maxsize() max_packet_size
   
 /* Stores tty modes from the fd into current packet. */  /* Stores tty modes from the fd into current packet. */
 void tty_make_modes(int fd);  void tty_make_modes(int fd);
   

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