diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-01-19 22:45:31 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-01-19 23:45:18 +0100 |
commit | 245c6a0b220b58686ee35bc5fc1c359e9be2faaa (patch) | |
tree | 7b988659be1a6ab06e5c7f1e7a2d37a6d27c7a9d /dispatch.h | |
parent | upstream: remove last references to active_state (diff) | |
download | openssh-245c6a0b220b58686ee35bc5fc1c359e9be2faaa.tar.xz openssh-245c6a0b220b58686ee35bc5fc1c359e9be2faaa.zip |
upstream: remove last traces of old packet API!
with & ok markus@
OpenBSD-Commit-ID: 9bd10437026423eb8245636ad34797a20fbafd7d
Diffstat (limited to 'dispatch.h')
-rw-r--r-- | dispatch.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/dispatch.h b/dispatch.h index 17a6f3db6..a22d7749f 100644 --- a/dispatch.h +++ b/dispatch.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dispatch.h,v 1.14 2017/05/31 07:00:13 markus Exp $ */ +/* $OpenBSD: dispatch.h,v 1.15 2019/01/19 21:45:31 djm Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -46,11 +46,4 @@ void ssh_dispatch_range(struct ssh *, u_int, u_int, dispatch_fn *); int ssh_dispatch_run(struct ssh *, int, volatile sig_atomic_t *); void ssh_dispatch_run_fatal(struct ssh *, int, volatile sig_atomic_t *); -#define dispatch_init(dflt) \ - ssh_dispatch_init(active_state, (dflt)) -#define dispatch_range(from, to, fn) \ - ssh_dispatch_range(active_state, (from), (to), (fn)) -#define dispatch_set(type, fn) \ - ssh_dispatch_set(active_state, (type), (fn)) - #endif |