summaryrefslogtreecommitdiff
path: root/dispatch.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-09-23 17:15:56 +1100
committerDamien Miller <djm@mindrot.org>2000-09-23 17:15:56 +1100
commit62cee00753ef8ce31b322ce6a14318cb974e883d (patch)
tree9a4dedd152d4570a99744eb9f32fe7e70461edfc /dispatch.c
parentf056e23dd6f7fad96afb9e0f5a64dce4f6045cc7 (diff)
- (djm) OpenBSD CVS sync:
- markus@cvs.openbsd.org 2000/09/17 09:38:59 [sshconnect2.c sshd.c] fix DEBUG_KEXDH - markus@cvs.openbsd.org 2000/09/17 09:52:51 [sshconnect.c] yes no; ok niels@ - markus@cvs.openbsd.org 2000/09/21 04:55:11 [sshd.8] typo - markus@cvs.openbsd.org 2000/09/21 05:03:54 [serverloop.c] typo - markus@cvs.openbsd.org 2000/09/21 05:11:42 scp.c utime() to utimes(); mouring@pconline.com - markus@cvs.openbsd.org 2000/09/21 05:25:08 sshconnect2.c change login logic in ssh2, allows plugin of other auth methods - markus@cvs.openbsd.org 2000/09/21 05:25:35 [auth2.c channels.c channels.h clientloop.c dispatch.c dispatch.h] [serverloop.c] add context to dispatch_run - markus@cvs.openbsd.org 2000/09/21 05:07:52 authfd.c authfd.h ssh-agent.c bug compat for old ssh.com software
Diffstat (limited to 'dispatch.c')
-rw-r--r--dispatch.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/dispatch.c b/dispatch.c
index 3daac2022..db8951c1b 100644
--- a/dispatch.c
+++ b/dispatch.c
@@ -22,7 +22,7 @@
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */ 23 */
24#include "includes.h" 24#include "includes.h"
25RCSID("$OpenBSD: dispatch.c,v 1.4 2000/09/07 20:27:51 deraadt Exp $"); 25RCSID("$OpenBSD: dispatch.c,v 1.5 2000/09/21 11:25:34 markus Exp $");
26#include "ssh.h" 26#include "ssh.h"
27#include "dispatch.h" 27#include "dispatch.h"
28#include "packet.h" 28#include "packet.h"
@@ -33,7 +33,7 @@ RCSID("$OpenBSD: dispatch.c,v 1.4 2000/09/07 20:27:51 deraadt Exp $");
33dispatch_fn *dispatch[DISPATCH_MAX]; 33dispatch_fn *dispatch[DISPATCH_MAX];
34 34
35void 35void
36dispatch_protocol_error(int type, int plen) 36dispatch_protocol_error(int type, int plen, void *ctxt)
37{ 37{
38 error("Hm, dispatch protocol error: type %d plen %d", type, plen); 38 error("Hm, dispatch protocol error: type %d plen %d", type, plen);
39} 39}
@@ -50,7 +50,7 @@ dispatch_set(int type, dispatch_fn *fn)
50 dispatch[type] = fn; 50 dispatch[type] = fn;
51} 51}
52void 52void
53dispatch_run(int mode, int *done) 53dispatch_run(int mode, int *done, void *ctxt)
54{ 54{
55 for (;;) { 55 for (;;) {
56 int plen; 56 int plen;
@@ -64,7 +64,7 @@ dispatch_run(int mode, int *done)
64 return; 64 return;
65 } 65 }
66 if (type > 0 && type < DISPATCH_MAX && dispatch[type] != NULL) 66 if (type > 0 && type < DISPATCH_MAX && dispatch[type] != NULL)
67 (*dispatch[type])(type, plen); 67 (*dispatch[type])(type, plen, ctxt);
68 else 68 else
69 packet_disconnect("protocol error: rcvd type %d", type); 69 packet_disconnect("protocol error: rcvd type %d", type);
70 if (done != NULL && *done) 70 if (done != NULL && *done)