=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/dispatch.h,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -u -r1.4.2.1 -r1.4.2.2 --- src/usr.bin/ssh/dispatch.h 2001/09/27 19:03:54 1.4.2.1 +++ src/usr.bin/ssh/dispatch.h 2002/03/09 00:20:44 1.4.2.2 @@ -1,4 +1,4 @@ -/* $OpenBSD: dispatch.h,v 1.4.2.1 2001/09/27 19:03:54 jason Exp $ */ +/* $OpenBSD: dispatch.h,v 1.4.2.2 2002/03/09 00:20:44 miod Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -28,9 +28,11 @@ DISPATCH_NONBLOCK }; -typedef void dispatch_fn(int, int, void *); +typedef void dispatch_fn(int, u_int32_t, void *); void dispatch_init(dispatch_fn *); void dispatch_set(int, dispatch_fn *); +void dispatch_range(u_int, u_int, dispatch_fn *); void dispatch_run(int, int *, void *); -void dispatch_protocol_error(int, int, void *); +void dispatch_protocol_error(int, u_int32_t, void *); +void dispatch_protocol_ignore(int, u_int32_t, void *);