[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.73 and 1.74

version 1.73, 2016/09/30 09:19:13 version 1.74, 2016/10/11 21:47:45
Line 64 
Line 64 
         void *app_data;          void *app_data;
 };  };
   
   typedef int (ssh_packet_hook_fn)(struct ssh *, struct sshbuf *,
       u_char *, void *);
   
 struct ssh *ssh_alloc_session_state(void);  struct ssh *ssh_alloc_session_state(void);
 struct ssh *ssh_packet_set_connection(struct ssh *, int, int);  struct ssh *ssh_packet_set_connection(struct ssh *, int, int);
 void     ssh_packet_set_timeout(struct ssh *, int, int);  void     ssh_packet_set_timeout(struct ssh *, int, int);
Line 74 
Line 77 
 int      ssh_packet_get_connection_out(struct ssh *);  int      ssh_packet_get_connection_out(struct ssh *);
 void     ssh_packet_close(struct ssh *);  void     ssh_packet_close(struct ssh *);
 void     ssh_packet_set_encryption_key(struct ssh *, const u_char *, u_int, int);  void     ssh_packet_set_encryption_key(struct ssh *, const u_char *, u_int, int);
   void     ssh_packet_set_input_hook(struct ssh *, ssh_packet_hook_fn *, void *);
   
 int      ssh_packet_is_rekeying(struct ssh *);  int      ssh_packet_is_rekeying(struct ssh *);
 void     ssh_packet_set_protocol_flags(struct ssh *, u_int);  void     ssh_packet_set_protocol_flags(struct ssh *, u_int);
 u_int    ssh_packet_get_protocol_flags(struct ssh *);  u_int    ssh_packet_get_protocol_flags(struct ssh *);

Legend:
Removed from v.1.73  
changed lines
  Added in v.1.74