[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.5

version 1.3, 2000/09/21 11:25:34 version 1.3.2.5, 2001/09/27 00:15: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, 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.3  
changed lines
  Added in v.1.3.2.5