diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-01-19 21:31:32 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-01-20 09:02:10 +1100 |
commit | 0fa174ebe129f3d0aeaf4e2d1dd8de745870d0ff (patch) | |
tree | 8ce7eacecf1200d6cb95cd01e87416cc6a3b1af7 /servconf.c | |
parent | 4ae7f80dfd02f2bde912a67c9f338f61e90fa79f (diff) |
upstream: 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@
OpenBSD-Commit-ID: 93c98a6b38f6911fd1ae025a1ec57807fb4d4ef4
Diffstat (limited to 'servconf.c')
-rw-r--r-- | servconf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/servconf.c b/servconf.c index 52d9be429..0ec095bd0 100644 --- a/servconf.c +++ b/servconf.c | |||
@@ -1,5 +1,5 @@ | |||
1 | 1 | ||
2 | /* $OpenBSD: servconf.c,v 1.344 2018/11/19 04:12:32 djm Exp $ */ | 2 | /* $OpenBSD: servconf.c,v 1.345 2019/01/19 21:31:32 djm Exp $ */ |
3 | /* | 3 | /* |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
5 | * All rights reserved | 5 | * All rights reserved |
@@ -65,6 +65,9 @@ | |||
65 | #include "myproposal.h" | 65 | #include "myproposal.h" |
66 | #include "digest.h" | 66 | #include "digest.h" |
67 | 67 | ||
68 | #include "opacket.h" /* XXX */ | ||
69 | extern struct ssh *active_state; /* XXX */ | ||
70 | |||
68 | static void add_listen_addr(ServerOptions *, const char *, | 71 | static void add_listen_addr(ServerOptions *, const char *, |
69 | const char *, int); | 72 | const char *, int); |
70 | static void add_one_listen_addr(ServerOptions *, const char *, | 73 | static void add_one_listen_addr(ServerOptions *, const char *, |