[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.49 and 1.50

version 1.49, 2008/07/10 18:08:11 version 1.50, 2009/05/25 06:48:01
Line 72 
Line 72 
 void     packet_set_state(int, u_int32_t, u_int64_t, u_int32_t, u_int64_t);  void     packet_set_state(int, u_int32_t, u_int64_t, u_int32_t, u_int64_t);
 int      packet_get_ssh1_cipher(void);  int      packet_get_ssh1_cipher(void);
 void     packet_set_iv(int, u_char *);  void     packet_set_iv(int, u_char *);
   void    *packet_get_newkeys(int);
   
 void     packet_write_poll(void);  void     packet_write_poll(void);
 void     packet_write_wait(void);  void     packet_write_wait(void);
Line 87 
Line 88 
 void     tty_make_modes(int, struct termios *);  void     tty_make_modes(int, struct termios *);
 void     tty_parse_modes(int, int *);  void     tty_parse_modes(int, int *);
   
 extern u_int max_packet_size;  void     packet_set_alive_timeouts(int);
 extern int keep_alive_timeouts;  int      packet_inc_alive_timeouts(void);
 int      packet_set_maxsize(u_int);  int      packet_set_maxsize(u_int);
 #define  packet_get_maxsize() max_packet_size  u_int    packet_get_maxsize(void);
   
 /* don't allow remaining bytes after the end of the message */  /* don't allow remaining bytes after the end of the message */
 #define packet_check_eom() \  #define packet_check_eom() \
Line 105 
Line 106 
   
 int      packet_need_rekeying(void);  int      packet_need_rekeying(void);
 void     packet_set_rekey_limit(u_int32_t);  void     packet_set_rekey_limit(u_int32_t);
   
   void    *packet_get_input(void);
   void    *packet_get_output(void);
   
 #endif                          /* PACKET_H */  #endif                          /* PACKET_H */

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50