[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.1.2.3 and 1.2

version 1.1.2.3, 2001/03/21 18:52:45 version 1.2, 2000/09/07 20:27:51
Line 1 
Line 1 
 /*      $OpenBSD$       */  
   
 /*  /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.   * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  *   *
Line 28 
Line 26 
         DISPATCH_NONBLOCK          DISPATCH_NONBLOCK
 };  };
   
 typedef void dispatch_fn(int type, int plen, void *ctxt);  typedef void dispatch_fn(int type, int plen);
   
 void    dispatch_init(dispatch_fn *dflt);  void    dispatch_init(dispatch_fn *dflt);
 void    dispatch_set(int type, dispatch_fn *fn);  void    dispatch_set(int type, dispatch_fn *fn);
 void    dispatch_run(int mode, int *done, void *ctxt);  void    dispatch_run(int mode, int *done);
 void    dispatch_protocol_error(int type, int plen, void *ctxt);  void    dispatch_protocol_error(int type, int plen);

Legend:
Removed from v.1.1.2.3  
changed lines
  Added in v.1.2