summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/channels.h
AgeCommit message (Expand)Author
2024-10-13don't start the ObscureKeystrokeTiming mitigations if there has beenDamien Miller
2024-07-25Fix proxy multiplexing (-O proxy) bugDamien Miller
2024-05-23remove unused struct fwd_perm_list, no decl with complete typeJonathan Gray
2024-05-17remove prototypes with no matching function; ok djm@Jonathan Gray
2023-12-18stricter handling of channel window limitsDamien Miller
2023-11-15when deciding whether to enable keystroke timing obfuscation,Damien Miller
2023-09-04make channel_output_poll() return a flag indicating whether channelDamien Miller
2023-07-04add support for unix domain sockets to ssh -WDavid Gwynne
2023-06-05Store timeouts as int, not u_int as they are limited to INT_MAX.Todd C. Miller
2023-03-04Use time_t instead of u_int for remaining x11 timeout checks for 64bitDarren Tucker
2023-01-18when restoring non-blocking mode to stdio fds, restore exactlyDamien Miller
2023-01-06Implement channel inactivity timeoutsDamien Miller
2023-01-06Add channel_set_xtype()Damien Miller
2023-01-06Add channel_force_close()Damien Miller
2023-01-06replace manual poll/ppoll timeout math with ptimeout APIDamien Miller
2022-05-05channel_new no longer frees remote_name. So update the commentDamien Miller
2022-03-30fix poll() spin when a channel's output fd closes without data in theDamien Miller
2022-01-22add a ssh_packet_process_read() function that reads from a fdDamien Miller
2022-01-06convert ssh, sshd mainloops from select() to poll();Damien Miller
2022-01-06prepare for conversion of ssh, sshd mainloop from select() to poll()Damien Miller
2021-05-19restore blocking status on stdio fds before closeDamien Miller
2021-04-03highly polished whitespace, mostly fixing spaces-for-tab and badDamien Miller
2021-04-03whitespace (tab after space)Damien Miller
2020-09-20cap channel input buffer size at 16MB; avoids high memory use whenDamien Miller
2020-07-05some language improvements; ok markusDamien Miller
2020-01-25add a comment describing the ranges of channel IDs that we use;Damien Miller
2018-10-04include a little more information about the status and disposition ofDamien Miller
2018-06-06Add a PermitListen directive to control which server-side addressesDamien Miller
2017-09-21Add 'reverse' dynamic forwarding which combines dynamic forwardingMarkus Friedl
2017-09-12Make remote channel ID a u_intDamien Miller
2017-09-12refactor channels.cDamien Miller
2017-08-30pass packet state down to some of the channels function (moreDamien Miller
2017-05-30protocol handlers all get struct ssh passed; ok djm@Markus Friedl
2017-05-26remove SSH_CHANNEL_XXX_DRAINING (ssh1 only); ok djm@Markus Friedl
2017-05-26remove channel_input_close_confirmation (ssh1 only); ok djm@Markus Friedl
2017-04-30obliterate ssh1.h and some dead code that used itDamien Miller
2017-04-30remove compat20/compat13/compat15 variablesDamien Miller
2017-02-01Return true reason for port forwarding failures where feasible ratherDarren Tucker
2016-10-18Remove channel_input_port_forward_request(); the only caller was theDarren Tucker
2016-09-30ssh proxy mux mode (-O proxy; idea from Simon Tatham):Markus Friedl
2015-07-01better refuse ForwardX11Trusted=no connections attempted afterDamien Miller
2015-05-08moar whitespace at eolDamien Miller
2015-01-19move dispatch to struct ssh; ok djm@Markus Friedl
2014-07-15Add support for Unix domain socket forwarding. A remote TCP portTodd C. Miller
2014-06-27fix remote fwding with same listen port but different listen addressMarkus Friedl
2013-06-07Add an "ABANDONED" channel state and use for mux sessions that areDarren Tucker
2013-06-02typo in commentDarren Tucker
2012-04-11don't spin in accept() when out of fds (ENFILE/ENFILE) - back off for aDamien Miller
2012-03-29Add PermitOpen none option based on patch from Loganaden VelvindronDarren Tucker
2011-09-23unbreak remote portforwarding with dynamic allocated listen ports:Markus Friedl