Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-08-08 | sftp prompt enhancements: | Jared Yanovich | |
- in non-interactive mode, do not print an empty prompt at the end before finishing - print newline after EOF in editline mode - call el_end() in editline mode ok dtucker djm | |||
2005-08-06 | Unbreak sshd ListenAddress for bare IPv6 addresses. | Darren Tucker | |
Report from Janusz Mucka; ok djm@ | |||
2005-07-30 | listen_hosts initialisation here too; spotted greg AT y2005.nest.cx | Damien Miller | |
2005-07-30 | fix -D listen_host initialisation, so it picks up gateway_ports setting | Damien Miller | |
correctly | |||
2005-07-28 | missing packet_init_compression(); from solar | Markus Friedl | |
2005-07-27 | Silence bogus -Wuninitialized warnings; ok djm@ | Darren Tucker | |
2005-07-25 | add a new compression method that delays compression until the user | Markus Friedl | |
has been authenticated successfully and set compression to 'delayed' for sshd. this breaks older openssh clients (< 3.5) if they insist on compression, so you have to re-enable compression in sshd_config. ok djm@ | |||
2005-07-19 | auth_usercheck(3) can return NULL, so check for that. Report from | Otto Moerbeek | |
mpech@. ok markus@ | |||
2005-07-17 | knf says that a 2nd level indent is four (not three or five) spaces | Damien Miller | |
2005-07-17 | Fix a number of X11 forwarding channel leaks: | Damien Miller | |
1. Refuse multiple X11 forwarding requests on the same session 2. Clean up all listeners after a single_connection X11 forward, not just the one that made the single connection 3. Destroy X11 listeners when the session owning them goes away testing and ok dtucker@ | |||
2005-07-16 | spacing | Damien Miller | |
2005-07-14 | use __sentinel__ attribute; ok deraadt@ djm@ markus@ | Darren Tucker | |
2005-07-08 | new sentence, new line; | Jason McIntyre | |
2005-07-08 | change BindAddress to match recent ssh -b change; prompted by markus@ | Darren Tucker | |
2005-07-08 | race when efd gets closed while there is still buffered data: | Markus Friedl | |
change CHANNEL_EFD_OUTPUT_ACTIVE() 1) c->efd must always be valid AND 2a) no EOF has been seen OR 2b) there is buffered data report, initial fix and testing Chuck Cranor | |||
2005-07-08 | Make comment match code; ok djm@ | Darren Tucker | |
2005-07-06 | clarify meaning of ssh -b ; with & ok jmc@ | Darren Tucker | |
2005-07-04 | don't forget to set x11_saved_display | Markus Friedl | |
2005-07-04 | fix Xr and a little grammar; | Jason McIntyre | |
2005-07-04 | implement support for X11 and agent forwarding over multiplex slave | Damien Miller | |
connections. Because of protocol limitations, the slave connections inherit the master's DISPLAY and SSH_AUTH_SOCK rather than distinctly forwarding their own. ok dtucker@ "put it in" deraadt@ | |||
2005-07-01 | don't free() if getaddrinfo() fails; report mpech@ | Markus Friedl | |
2005-06-25 | do the default port filling code a few lines earlier, so it really does fix %p | Damien Miller | |
2005-06-18 | allow ControlPath=none, patch from dwmw2 AT infradead.org; ok dtucker@ | Damien Miller | |
2005-06-17 | Fix ControlPath's %p expanding to "0" for a default port, | Damien Miller | |
spotted dwmw2 AT infradead.org; ok markus@ | |||
2005-06-17 | turn on -Wstrict-prototypes -Wsign-compare -Wshadow now that we are clean | Damien Miller | |
2005-06-17 | make this -Wsign-compare clean; ok avsm@ markus@ | Damien Miller | |
2005-06-16 | don't exit if getpeername fails for forwarded ports; bugzilla #1054; ok djm | Markus Friedl | |
2005-06-16 | move x11_get_proto from ssh.c to clientloop.c, to make muliplexed xfwd easier | Damien Miller | |
later; ok deraadt@ | |||
2005-06-09 | Correctly initialize end of array sentinel; ok djm@ | Darren Tucker | |
2005-06-08 | add ControlMaster=auto/autoask options to support opportunistic multiplexing; | Damien Miller | |
tested avsm@ and jakob@, ok markus@ | |||
2005-06-08 | increase default rsa/dsa key length from 1024 to 2048 bits; ok markus@ deraadt@ | Damien Miller | |
2005-06-07 | catch SIGWINCH and resize progress meter accordingly; ok markus dtucker | Jared Yanovich | |
2005-06-06 | introduce a generic %foo expansion function. replace existing % expansion and | Damien Miller | |
add expansion to ControlPath; ok markus@ | |||
2005-05-27 | fix -O for cases where no ControlPath has been specified or socket at | Damien Miller | |
ControlPath is not contactable; spotted by and ok avsm@ | |||
2005-05-26 | uint32_t -> u_int32_t for consistency; ok djm@ | Darren Tucker | |
2005-05-26 | If copying multiple files to a target file (which normally fails, as it | Anil Madhavapeddy | |
must be a target directory), kill the spawned ssh child before exiting. This stops it trying to authenticate and spewing lots of output. deraadt@ ok | |||
2005-05-24 | Switch atomicio to use a simpler interface; it now returns a size_t | Anil Madhavapeddy | |
(containing number of bytes read/written), and indicates error by returning 0. EOF is signalled by errno==EPIPE. Typical use now becomes: if (atomicio(read, ..., len) != len) err(1,"read"); ok deraadt@, cloder@, djm@ | |||
2005-05-24 | some style nits from dmiller@, and use a fatal() instead of a printf()/exit | Anil Madhavapeddy | |
2005-05-23 | add support for draft-harris-ssh-arcfour-fixes-02 improved arcfour modes; | Damien Miller | |
ok markus@ | |||
2005-05-23 | - removes signed/unsigned comparisons in moduli generation | Anil Madhavapeddy | |
- use strtonum instead of atoi where its easier - check some strlcpy overflow and fatal instead of truncate | |||
2005-05-20 | split protocol 1 auth methods into separate functions, makes authloop | Damien Miller | |
much more readable; fixes and ok markus@ | |||
2005-05-20 | oops - article and spacing; | Jason McIntyre | |
2005-05-20 | give a ProxyCommand example using nc(1), with and ok jmc@ | Damien Miller | |
2005-05-19 | fix cast, from grunk AT pestilenz.org | Damien Miller | |
2005-05-19 | whitespace nit, from grunk AT pestilenz.org | Damien Miller | |
2005-05-19 | sort config options, from grunk AT pestilenz.org; ok jmc@ | Damien Miller | |
2005-05-16 | check return value from strdelim() for NULL (AddressFamily); mpech | Markus Friedl | |
2005-05-10 | report real errors on fallback from ControlMaster=no to normal connect | Damien Miller | |
2005-05-10 | print nice error message for EADDRINUSE as well | Damien Miller | |
2005-05-02 | missing {} | Markus Friedl | |