]> andersk Git - openssh.git/blobdiff - dispatch.c
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / dispatch.c
index eac07b1b3ce3d9fd3b3d0de6081fe9d757aea65d..64bb8094742706b164d577463365617110eee9e0 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: dispatch.c,v 1.18 2006/03/25 13:17:01 djm Exp $ */
+/* $OpenBSD: dispatch.c,v 1.22 2008/10/31 15:05:34 stevesk Exp $ */
 /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  *
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
+
 #include "includes.h"
 
+#include <sys/types.h>
+
+#include <signal.h>
+#include <stdarg.h>
+
 #include "ssh1.h"
 #include "ssh2.h"
 #include "log.h"
@@ -31,7 +37,6 @@
 #include "packet.h"
 #include "compat.h"
 
-#define DISPATCH_MIN   0
 #define DISPATCH_MAX   255
 
 dispatch_fn *dispatch[DISPATCH_MAX];
@@ -76,7 +81,7 @@ dispatch_set(int type, dispatch_fn *fn)
        dispatch[type] = fn;
 }
 void
-dispatch_run(int mode, int *done, void *ctxt)
+dispatch_run(int mode, volatile sig_atomic_t *done, void *ctxt)
 {
        for (;;) {
                int type;
This page took 0.752072 seconds and 4 git commands to generate.