1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-09 15:23:50 -05:00

Pass SshServerConfig through to sesschan.c.

This will let me change the behaviour of the main session channel
based on command-line tweaks.
This commit is contained in:
Simon Tatham
2019-03-30 07:27:26 +00:00
parent ea32967044
commit 75fccc5d58
4 changed files with 9 additions and 4 deletions

View File

@ -88,7 +88,8 @@ PacketProtocolLayer *ssh1_login_server_new(
AuthPolicy *authpolicy, const SshServerConfig *ssc);
Channel *sesschan_new(SshChannel *c, LogContext *logctx,
const SftpServerVtable *sftpserver_vt);
const SftpServerVtable *sftpserver_vt,
const SshServerConfig *ssc);
Backend *pty_backend_create(
Seat *seat, LogContext *logctx, Conf *conf, char **argv, const char *cmd,