[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.3 and 1.3.2.6

version 1.3, 2000/09/21 11:25:34 version 1.3.2.6, 2002/03/08 17:04:42
Line 1 
Line 1 
   /*      $OpenBSD$       */
   
 /*  /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.   * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  *   *
Line 26 
Line 28 
         DISPATCH_NONBLOCK          DISPATCH_NONBLOCK
 };  };
   
 typedef void dispatch_fn(int type, int plen, void *ctxt);  typedef void dispatch_fn(int, u_int32_t, 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_range(u_int, u_int, dispatch_fn *);
 void    dispatch_protocol_error(int type, int plen, void *ctxt);  void     dispatch_run(int, int *, void *);
   void     dispatch_protocol_error(int, u_int32_t, void *);
   void     dispatch_protocol_ignore(int, u_int32_t, void *);

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.3.2.6