Age | Commit message (Expand) | Author |
2020-04-25 | We've standardized on memset over bzero, replace a couple that had slipped | Darren Tucker |
2020-03-06 | fix uninitialized pointers for forward_cancel; ok djm | Markus Friedl |
2020-02-26 | change explicit_bzero();free() to freezero() | Jonathan Gray |
2020-01-25 | the GatewayPorts vs -R listen address selection logic is still | Damien Miller |
2019-07-07 | Remove some set but never used variables. ok daraadt@ | Darren Tucker |
2019-06-28 | When system calls indicate an error they return -1, not some arbitrary | Theo de Raadt |
2019-06-07 | Typo and spelling fixes in comments and error messages. Patch from | Darren Tucker |
2019-05-10 | For PermitOpen violations add the remote host and port to | Florian Obser |
2019-05-03 | Free channel objects on exit path. Patch from markus at blueflash.cc, | Darren Tucker |
2019-01-19 | convert channels.c to new packet API | Damien Miller |
2019-01-19 | begin landing remaining refactoring of packet parsing API, started | Damien Miller |
2018-12-07 | no need to allocate channels_pre/channels_post in channel_init_channels() | Damien Miller |
2018-10-04 | factor out channel status formatting from channel_open_message() so | Damien Miller |
2018-10-04 | include a little more information about the status and disposition of | Damien Miller |
2018-07-27 | avoid expensive channel_open_message() calls; ok djm@ | Markus Friedl |
2018-07-11 | remove legacy key emulation layer; ok djm@ | Markus Friedl |
2018-06-25 | fix NULL dereference in open_listen_match_tcpip() | Damien Miller |
2018-06-06 | Add a PermitListen directive to control which server-side addresses | Damien Miller |
2018-04-10 | lots of typos in comments/docs. Patch from Karsten Weiss after checking | Damien Miller |
2018-02-05 | The file descriptors for socket, stdin, stdout and stderr aren't | Theo Buehler |
2018-01-23 | Drop compatibility hacks for some ancient SSH implementations, including | Damien Miller |
2017-12-05 | include the addr:port in bind/listen failure messages | Damien Miller |
2017-10-25 | Add optional rdomain qualifier to sshd_config's ListenAddress option | Damien Miller |
2017-09-24 | fix inverted test on channel open failure path that "upgraded" a | Damien Miller |
2017-09-24 | write the correct buffer when tunnel forwarding; doesn't matter | Damien Miller |
2017-09-23 | fix tunnel forwarding problem introduced in refactor; reported by | Damien Miller |
2017-09-21 | Add 'reverse' dynamic forwarding which combines dynamic forwarding | Markus Friedl |
2017-09-19 | Use explicit_bzero() instead of bzero() before free() to prevent | Todd C. Miller |
2017-09-12 | unused variable | Damien Miller |
2017-09-12 | fix tun/tap forwarding case in previous | Damien Miller |
2017-09-12 | Make remote channel ID a u_int | Damien Miller |
2017-09-12 | refactor channels.c | Damien Miller |
2017-08-30 | pass packet state down to some of the channels function (more | Damien Miller |
2017-05-31 | These shutdown() SHUT_RDWR are not needed before close() | Theo de Raadt |
2017-05-31 | fix possible OOB strlen() in SOCKS4A hostname parsing; ok markus@ | Damien Miller |
2017-05-30 | protocol handlers all get struct ssh passed; ok djm@ | Markus Friedl |
2017-05-30 | remove ssh1 references; ok djm@ | Markus Friedl |
2017-05-26 | remove SSH_CHANNEL_XXX_DRAINING (ssh1 only); ok djm@ | Markus Friedl |
2017-05-26 | remove channel_input_close_confirmation (ssh1 only); ok djm@ | Markus Friedl |
2017-04-30 | obliterate ssh1.h and some dead code that used it | Damien Miller |
2017-04-30 | remove compat20/compat13/compat15 variables | Damien Miller |
2017-02-01 | Return true reason for port forwarding failures where feasible rather | Darren Tucker |
2016-10-18 | Remove channel_input_port_forward_request(); the only caller was the | Darren Tucker |
2016-09-30 | fix some -Wpointer-sign warnings in the new mux proxy; ok markus@ | Damien Miller |
2016-09-30 | ssh proxy mux mode (-O proxy; idea from Simon Tatham): | Markus Friedl |
2016-09-19 | Replace two more arc4random() loops with arc4random_buf(). | Martin Natano |
2016-09-12 | Add MAXIMUM(), MINIMUM(), and ROUNDUP() to misc.h, then use those definitions | Theo de Raadt |
2016-07-19 | Allow wildcard for PermitOpen hosts as well as ports. bz#2582, patch from | Darren Tucker |
2016-03-07 | refactor canohost.c: move functions that cache results closer to the | Damien Miller |
2016-02-05 | Only check errno if read() has returned an error. EOF is not an error. | Christian Weisgerber |