diff options
author | 2019-01-19 21:31:32 +0000 | |
---|---|---|
committer | 2019-01-19 21:31:32 +0000 | |
commit | 8904d296d0abb7289322cfad76e1404fca98f494 (patch) | |
tree | 8f77cc3b1568fccba248b4d2692309b8cc4897b4 /usr.bin/ssh/serverloop.c | |
parent | Since there is no more exec()'ing, there is no need to (diff) | |
download | wireguard-openbsd-8904d296d0abb7289322cfad76e1404fca98f494.tar.xz wireguard-openbsd-8904d296d0abb7289322cfad76e1404fca98f494.zip |
begin landing remaining refactoring of packet parsing API, started
almost exactly six years ago.
This change stops including the old packet_* API by default and makes
each file that requires the old API include it explicitly. We will
commit file-by-file refactoring to remove the old API in consistent
steps.
with & ok markus@
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-rw-r--r-- | usr.bin/ssh/serverloop.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c index 380121ab5ca..6e6631a8368 100644 --- a/usr.bin/ssh/serverloop.c +++ b/usr.bin/ssh/serverloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: serverloop.c,v 1.209 2018/07/27 05:13:02 dtucker Exp $ */ +/* $OpenBSD: serverloop.c,v 1.210 2019/01/19 21:31:32 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -74,6 +74,9 @@ #include "serverloop.h" #include "ssherr.h" +#include "opacket.h" /* XXX */ +extern struct ssh *active_state; /* XXX */ + extern ServerOptions options; /* XXX */ |