[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.4 and 1.4.2.1

version 1.4, 2001/01/29 01:58:15 version 1.4.2.1, 2001/09/27 19:03:54
Line 28 
Line 28 
         DISPATCH_NONBLOCK          DISPATCH_NONBLOCK
 };  };
   
 typedef void dispatch_fn(int type, int plen, void *ctxt);  typedef void dispatch_fn(int, int, void *);
   
 void    dispatch_init(dispatch_fn *dflt);  void     dispatch_init(dispatch_fn *);
 void    dispatch_set(int type, dispatch_fn *fn);  void     dispatch_set(int, dispatch_fn *);
 void    dispatch_run(int mode, int *done, void *ctxt);  void     dispatch_run(int, int *, void *);
 void    dispatch_protocol_error(int type, int plen, void *ctxt);  void     dispatch_protocol_error(int, int, void *);

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.4.2.1