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

Diff for /src/usr.bin/ssh/Attic/opacket.h between version 1.2 and 1.3

version 1.2, 2015/01/28 21:15:47 version 1.3, 2015/01/30 01:13:33
Line 45 
Line 45 
 int      packet_read_seqnr(u_int32_t *);  int      packet_read_seqnr(u_int32_t *);
 int      packet_read_poll_seqnr(u_int32_t *);  int      packet_read_poll_seqnr(u_int32_t *);
 void     packet_process_incoming(const char *buf, u_int len);  void     packet_process_incoming(const char *buf, u_int len);
   void     packet_write_wait(void);
   void     packet_write_poll(void);
   void     packet_read_expect(int expected_type);
 #define packet_set_timeout(timeout, count) \  #define packet_set_timeout(timeout, count) \
         ssh_packet_set_timeout(active_state, (timeout), (count))          ssh_packet_set_timeout(active_state, (timeout), (count))
 #define packet_connection_is_on_socket() \  #define packet_connection_is_on_socket() \
Line 85 
Line 88 
         ssh_packet_send(active_state)          ssh_packet_send(active_state)
 #define packet_read() \  #define packet_read() \
         ssh_packet_read(active_state)          ssh_packet_read(active_state)
 #define packet_read_expect(expected_type) \  
         ssh_packet_read_expect(active_state, (expected_type))  
 #define packet_get_int64() \  #define packet_get_int64() \
         ssh_packet_get_int64(active_state)          ssh_packet_get_int64(active_state)
 #define packet_get_bignum(value) \  #define packet_get_bignum(value) \
Line 105 
Line 106 
         ssh_packet_send_debug(active_state, (fmt), ##args)          ssh_packet_send_debug(active_state, (fmt), ##args)
 #define packet_disconnect(fmt, args...) \  #define packet_disconnect(fmt, args...) \
         ssh_packet_disconnect(active_state, (fmt), ##args)          ssh_packet_disconnect(active_state, (fmt), ##args)
 #define packet_write_poll() \  
         ssh_packet_write_poll(active_state)  
 #define packet_write_wait() \  
         ssh_packet_write_wait(active_state)  
 #define packet_have_data_to_write() \  #define packet_have_data_to_write() \
         ssh_packet_have_data_to_write(active_state)          ssh_packet_have_data_to_write(active_state)
 #define packet_not_very_much_data_to_write() \  #define packet_not_very_much_data_to_write() \

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