[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.70 and 1.71

version 1.70, 2016/02/08 10:57:07 version 1.71, 2016/03/07 19:02:43
Line 42 
Line 42 
         /* Key exchange */          /* Key exchange */
         struct kex *kex;          struct kex *kex;
   
         /* cached remote ip address and port*/          /* cached local and remote ip addresses and ports */
         char *remote_ipaddr;          char *remote_ipaddr;
         int remote_port;          int remote_port;
           char *local_ipaddr;
           int local_port;
   
         /* Dispatcher table */          /* Dispatcher table */
         dispatch_fn *dispatch[DISPATCH_MAX];          dispatch_fn *dispatch[DISPATCH_MAX];
Line 131 
Line 133 
   
 const char *ssh_remote_ipaddr(struct ssh *);  const char *ssh_remote_ipaddr(struct ssh *);
 int      ssh_remote_port(struct ssh *);  int      ssh_remote_port(struct ssh *);
   const char *ssh_local_ipaddr(struct ssh *);
   int      ssh_local_port(struct ssh *);
   
 void     ssh_packet_set_rekey_limits(struct ssh *, u_int64_t, time_t);  void     ssh_packet_set_rekey_limits(struct ssh *, u_int64_t, time_t);
 time_t   ssh_packet_get_rekey_timeout(struct ssh *);  time_t   ssh_packet_get_rekey_timeout(struct ssh *);

Legend:
Removed from v.1.70  
changed lines
  Added in v.1.71