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

Diff for /src/usr.bin/ssh/dispatch.h between version 1.12 and 1.13

version 1.12, 2015/01/19 20:07:45 version 1.13, 2017/05/30 14:23:52
Line 36 
Line 36 
   
 struct ssh;  struct ssh;
   
 typedef int dispatch_fn(int, u_int32_t, void *);  typedef int dispatch_fn(int, u_int32_t, struct ssh *);
   
 int     dispatch_protocol_error(int, u_int32_t, void *);  int     dispatch_protocol_error(int, u_int32_t, struct ssh *);
 int     dispatch_protocol_ignore(int, u_int32_t, void *);  int     dispatch_protocol_ignore(int, u_int32_t, struct ssh *);
 void    ssh_dispatch_init(struct ssh *, dispatch_fn *);  void    ssh_dispatch_init(struct ssh *, dispatch_fn *);
 void    ssh_dispatch_set(struct ssh *, int, dispatch_fn *);  void    ssh_dispatch_set(struct ssh *, int, dispatch_fn *);
 void    ssh_dispatch_range(struct ssh *, u_int, u_int, dispatch_fn *);  void    ssh_dispatch_range(struct ssh *, u_int, u_int, dispatch_fn *);

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13