summaryrefslogtreecommitdiff
path: root/dispatch.h
diff options
context:
space:
mode:
authordjm <djm>2001-12-21 04:00:19 +0000
committerdjm <djm>2001-12-21 04:00:19 +0000
commitb03b6a0b92a41c3a0a069935f9c27c698a04b284 (patch)
tree0eabead2aa077e9ce1a6734a9b90aa9534c1b797 /dispatch.h
parentad7513f148d12450c83c03afb84dd14571255ed0 (diff)
downloadopenssh-b03b6a0b92a41c3a0a069935f9c27c698a04b284.tar.gz
- djm@cvs.openbsd.org 2001/12/20 22:50:24
[auth2.c auth2-chall.c channels.c channels.h clientloop.c dispatch.c] [dispatch.h kex.c kex.h packet.c packet.h serverloop.c ssh.c] [sshconnect2.c] Conformance fix: we should send failing packet sequence number when responding with a SSH_MSG_UNIMPLEMENTED message. Spotted by yakk@yakk.dot.net; ok markus@
Diffstat (limited to 'dispatch.h')
-rw-r--r--dispatch.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dispatch.h b/dispatch.h
index 7b94032a..127ec106 100644
--- a/dispatch.h
+++ b/dispatch.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dispatch.h,v 1.6 2001/06/26 17:27:23 markus Exp $ */
+/* $OpenBSD: dispatch.h,v 1.7 2001/12/20 22:50:24 djm Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -28,9 +28,9 @@ enum {
DISPATCH_NONBLOCK
};
-typedef void dispatch_fn(int, int, void *);
+typedef void dispatch_fn(int, int, u_int32_t, void *);
void dispatch_init(dispatch_fn *);
void dispatch_set(int, dispatch_fn *);
void dispatch_run(int, int *, void *);
-void dispatch_protocol_error(int, int, void *);
+void dispatch_protocol_error(int, int, u_int32_t, void *);