CVSROOT: /cvs Module name: src Changes by: d...@cvs.openbsd.org 2023/01/05 19:47:19
Modified files: usr.bin/ssh : channels.c channels.h monitor_wrap.c servconf.c servconf.h sshd.c sshd_config.5 Log message: Implement channel inactivity timeouts This adds a sshd_config ChannelTimeouts directive that allows channels that have not seen traffic in a configurable interval to be automatically closed. Different timeouts may be applied to session, X11, agent and TCP forwarding channels. Note: this only affects channels over an opened SSH connection and not the connection itself. Most clients close the connection when their channels go away, with a notable exception being ssh(1) in multiplexing mode. ok markus dtucker