Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | channels: Fix incorrect return values in ssh_channel_write(). | Andreas Schneider | 2011-08-10 | 1 | -3/+13 | |
| | ||||||
* | channels: Handle SSH_AGAIN in channel_open(). | Andreas Schneider | 2011-08-09 | 1 | -5/+8 | |
| | ||||||
* | channels: Fix an endless loop in case of a channel_open error. | rofl0r | 2011-08-06 | 1 | -0/+4 | |
| | ||||||
* | session: Fix timeout handling. | rofl0r | 2011-08-06 | 1 | -9/+9 | |
| | | | | | -2 now means to use the timeout specified in options. It wasn't used earlier and poll only knows -1 and 0 anyway for special meanings. | |||||
* | channels: Fix checking for fatal errors. | rofl0r | 2011-08-06 | 1 | -0/+5 | |
| | | | | We need this that we don't end up in and infinite poll loop. | |||||
* | channels: Fix ssh_channel_from_local() | rofl0r | 2011-08-06 | 1 | -14/+15 | |
| | | | | | It only worked if the first channel in the list was equivalent to we were looking for. | |||||
* | channels: Set the max packet size to 32768. | Andreas Schneider | 2011-08-03 | 1 | -4/+28 | |
| | ||||||
* | Forgot a cast to remove warnings | Aris Adamantiadis | 2011-05-27 | 1 | -2/+2 | |
| | ||||||
* | Fix bug #5, channel_read_nonblocking that blocks | Aris Adamantiadis | 2011-05-27 | 1 | -1/+1 | |
| | ||||||
* | Fixed warnings on MacosX with Xcode4 | Aris Adamantiadis | 2011-05-20 | 1 | -5/+5 | |
| | ||||||
* | channel: Fixed potential use-after-free in ssh_channel_get_exit_status(). | Oliver Stöneberg | 2011-05-17 | 1 | -1/+1 | |
| | | | | | If ssh_channel_get_exit_status() is called more than once and the connection closed. | |||||
* | channel: Improve the request signal documentation. | Andreas Schneider | 2011-05-15 | 1 | -1/+17 | |
| | ||||||
* | [channels] Added ssh_channel_window_size() and avoided reentrancy in ↵ | milo | 2011-05-02 | 1 | -8/+9 | |
| | | | | | | channel_write_common() (cherry picked from commit 27313334578f4acb7ccf0687bba7f76b2febd569) | |||||
* | Fix assertion with Visual Studio because of %zu. | Andreas Schneider | 2011-04-15 | 1 | -2/+2 | |
| | ||||||
* | Implemented X11 server side | milo | 2011-04-14 | 1 | -0/+63 | |
| | ||||||
* | Check for NULL channel pointers | milo | 2011-02-22 | 1 | -8/+116 | |
| | ||||||
* | channel: Fixed a possible NULL pointe dereference. | Andreas Schneider | 2011-02-18 | 1 | -3/+7 | |
| | ||||||
* | channel: Improve ssh_channel_open_reverse_forward documentation. | Bernhard R. Link | 2011-02-18 | 1 | -4/+5 | |
| | ||||||
* | channels: set error for new NULL pointer checks | Bernhard R. Link | 2011-02-18 | 1 | -4/+23 | |
| | | | | Signed-off-by: Andreas Schneider <asn@cryptomilk.org> | |||||
* | channels: Set errors on return. | Bernhard R. Link | 2011-02-14 | 1 | -2/+80 | |
| | | | | Signed-off-by: Andreas Schneider <asn@cryptomilk.org> | |||||
* | Check for NULL pointers in channels.c | milo | 2011-02-14 | 1 | -10/+58 | |
| | ||||||
* | Respect RFC when sending stderr data | milo | 2011-02-04 | 1 | -2/+10 | |
| | | | | | | | | | http://tools.ietf.org/html/rfc4254#section-5.2 byte SSH_MSG_CHANNEL_EXTENDED_DATA uint32 recipient channel *uint32 data_type_code* string data | |||||
* | channels: Fixed a build warning. | Andreas Schneider | 2010-12-23 | 1 | -1/+1 | |
| | ||||||
* | Fix from Oleksandr Shneyder | Aris Adamantiadis | 2010-12-07 | 1 | -2/+4 | |
| | | | | http://www.libssh.org/archive/libssh/2010-11/0000005.html | |||||
* | Removed references to ssh_buffer_get_begin | Aris Adamantiadis | 2010-10-03 | 1 | -6/+6 | |
| | ||||||
* | Don't grow window if there is no space in the buffer | milo | 2010-10-02 | 1 | -1/+1 | |
| | ||||||
* | Fix the window not growing problem | Aris Adamantiadis | 2010-10-02 | 1 | -1/+6 | |
| | | | | | | | Fix conflict with patch from milo Conflicts: src/channels.c | |||||
* | Added ssh_channel_write_stderr() for the server | milo | 2010-10-02 | 1 | -0/+17 | |
| | ||||||
* | Added channel features on the server | milo | 2010-10-02 | 1 | -6/+205 | |
| | | | | | | | - ssh_channel_request_send_exit_status() - ssh_channel_request_send_exit_signal() - enhanced these features client-side | |||||
* | Handle global requests and reverse forwarding | milo | 2010-10-02 | 1 | -1/+72 | |
| | ||||||
* | Add new callbacks in session and channels | milo | 2010-10-02 | 1 | -0/+33 | |
| | ||||||
* | Rewrote channel_read_buffer to use ssh_channel_read | Aris Adamantiadis | 2010-10-01 | 1 | -71/+36 | |
| | ||||||
* | Update the window *after* effective read | Aris Adamantiadis | 2010-10-01 | 1 | -6/+6 | |
| | ||||||
* | Fix the behaviour of channel window handling | Aris Adamantiadis | 2010-10-01 | 1 | -15/+30 | |
| | ||||||
* | Fixed outgoing flow control + writes behaviours | Aris Adamantiadis | 2010-09-26 | 1 | -2/+2 | |
| | ||||||
* | misc: Rename libssh/ to src/ | Andreas Schneider | 2010-09-06 | 1 | -0/+2495 | |