[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.62 and 1.63

version 1.62, 2015/01/19 19:52:16 version 1.63, 2015/01/19 20:07:45
Line 28 
Line 28 
 struct sshbuf;  struct sshbuf;
 struct session_state;   /* private session data */  struct session_state;   /* private session data */
   
   #include "dispatch.h"   /* typedef, DISPATCH_MAX */
   
 struct ssh {  struct ssh {
         /* Session state */          /* Session state */
         struct session_state *state;          struct session_state *state;
Line 38 
Line 40 
         /* cached remote ip address and port*/          /* cached remote ip address and port*/
         char *remote_ipaddr;          char *remote_ipaddr;
         int remote_port;          int remote_port;
   
           /* Dispatcher table */
           dispatch_fn *dispatch[DISPATCH_MAX];
           /* number of packets to ignore in the dispatcher */
           int dispatch_skip_packets;
   
         /* datafellows */          /* datafellows */
         int compat;          int compat;

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.63