[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.1 and 1.2

version 1.1, 2015/01/19 19:52:16 version 1.2, 2015/01/28 21:15:47
Line 44 
Line 44 
 void     packet_set_connection(int, int);  void     packet_set_connection(int, int);
 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);
 #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 86 
Line 87 
         ssh_packet_read(active_state)          ssh_packet_read(active_state)
 #define packet_read_expect(expected_type) \  #define packet_read_expect(expected_type) \
         ssh_packet_read_expect(active_state, (expected_type))          ssh_packet_read_expect(active_state, (expected_type))
 #define packet_process_incoming(buf, len) \  
         ssh_packet_process_incoming(active_state, (buf), (len))  
 #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) \

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