diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-01-19 21:37:48 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-01-20 09:02:44 +1100 |
commit | 172a592a53ebe8649c4ac0d7946e6c08eb151af6 (patch) | |
tree | f7279c9f91927cc1c8517ebc61cccba00a29e4bb /servconf.h | |
parent | 8cc7a679d29cf6ecccfa08191e688c7f81ef95c2 (diff) |
upstream: convert servconf.c to new packet API
with & ok markus@
OpenBSD-Commit-ID: 126553aecca302c9e02fd77e333b9cb217e623b4
Diffstat (limited to 'servconf.h')
-rw-r--r-- | servconf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/servconf.h b/servconf.h index 548ad5a0c..54e0a8d8d 100644 --- a/servconf.h +++ b/servconf.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: servconf.h,v 1.138 2018/11/19 04:12:32 djm Exp $ */ | 1 | /* $OpenBSD: servconf.h,v 1.139 2019/01/19 21:37:48 djm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
@@ -258,7 +258,7 @@ struct connection_info { | |||
258 | M_CP_STRARRAYOPT(permitted_listens, num_permitted_listens); \ | 258 | M_CP_STRARRAYOPT(permitted_listens, num_permitted_listens); \ |
259 | } while (0) | 259 | } while (0) |
260 | 260 | ||
261 | struct connection_info *get_connection_info(int, int); | 261 | struct connection_info *get_connection_info(struct ssh *, int, int); |
262 | void initialize_server_options(ServerOptions *); | 262 | void initialize_server_options(ServerOptions *); |
263 | void fill_default_server_options(ServerOptions *); | 263 | void fill_default_server_options(ServerOptions *); |
264 | int process_server_config_line(ServerOptions *, char *, const char *, int, | 264 | int process_server_config_line(ServerOptions *, char *, const char *, int, |