Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-08-25 | Changelog re #312, closes #312 | Jeff Forcier | |
2014-08-25 | Set Transport.active to False early in Transport.__init__. | Simon Percivall | |
2014-08-25 | Changelog re #272 | Jeff Forcier | |
2014-08-25 | Don't hash the input hostname when checking a host key if the input hostname ↵ | Sigmund Augdal | |
is already hashed This happens in the loop checking if a hostkey is already loaded when loading host key files. This reduces time to load host keys file with about two seconds for me | |||
2014-08-25 | Merge branch '1.14' | Jeff Forcier | |
2014-08-25 | Merge branch '1.13' into 1.14 | Jeff Forcier | |
2014-08-25 | Rework re #239 to work off post-1.13 codebase. Closes #239 | Jeff Forcier | |
2014-08-25 | Merge branch '1.14' | Jeff Forcier | |
2014-08-25 | Merge branch '1.13' into 1.14 | Jeff Forcier | |
2014-08-25 | Fix docstrings re: addition of `getfo`/`putfo`, closes #229 | Jeff Forcier | |
2014-08-25 | Changelog re #169 | Jeff Forcier | |
2014-08-25 | Minor refactor, re #169 | Jeff Forcier | |
2014-08-25 | Merge branch '1.14' | Jeff Forcier | |
Conflicts: sites/www/changelog.rst | |||
2014-08-25 | Merge branch '1.13' into 1.14 | Jeff Forcier | |
Conflicts: sites/www/changelog.rst | |||
2014-08-25 | Changelog re #285, re #352 | Jeff Forcier | |
Conflicts: sites/www/changelog.rst | |||
2014-08-25 | Support passing in "buffer" objects again where bytestrings are expected. | Jelmer Vernooij | |
This fixes bzr's use of paramiko. Fixes issue #343/#285. | |||
2014-08-25 | Changelog re #285, re #352 | Jeff Forcier | |
2014-08-25 | Merge branch 'master' into 352-int | Jeff Forcier | |
2014-08-25 | Changelog re #371 | Jeff Forcier | |
2014-08-25 | Add a plus to our 3.3 support to denote 3.4 and on | Jeff Forcier | |
2014-08-25 | Merge branch 'master' into 371-int | Jeff Forcier | |
2014-08-25 | reorder key exchange methods to increase security | Sebastian Deiss | |
2014-08-25 | Merge branch 'master' into gssapi-py3-support | Sebastian Deiss | |
2014-08-21 | Use the new decorator and remove repeated code. | Olle Lundberg | |
2014-08-21 | Add a decorator for checking channel openness. | Olle Lundberg | |
This decorator will be used in future commits. | |||
2014-08-21 | More tweaks - don't make it sound like we routinely support >3, we don't | Jeff Forcier | |
2014-08-21 | This isn't worth having and then always forgetting about | Jeff Forcier | |
2014-08-18 | Sphinx conf cleanup | Jeff Forcier | |
2014-08-15 | Remove raising of socket excpetions from sendall*. | Olle Lundberg | |
2014-08-15 | Use new _send method. | Olle Lundberg | |
2014-08-15 | Add new _send method to reduce code duplication. | Olle Lundberg | |
This method is the lowest _send related method on Channel and is the place where we raise a socket is closed Excpetion. | |||
2014-08-15 | Whitespace fixes. | Olle Lundberg | |
2014-08-15 | Let packetizer handle 0-length sends from channel. | Olle Lundberg | |
If the channel is closed the send method returs a response length of 0. This is not handled correctly by the packetizer and puts it in an infinite loop. (Fixes #156 for real :-) We make sure we don't do more than 10 iteration on a 0 length respose, but raise an EOFError. | |||
2014-08-15 | Don't end a line with whitespace. | Olle Lundberg | |
This might be stripped by editors at will, which will make some tests brake. | |||
2014-08-15 | Remove all occurences of ParamikoTest. | Olle Lundberg | |
Sorry paramiko, it's time to put on the big boy pants. You no longer support old as hell versions of python. | |||
2014-08-15 | Strip whitespace. | Olle Lundberg | |
2014-08-15 | Strip whitespace. | Olle Lundberg | |
2014-08-15 | Document potential brokeness. | Olle Lundberg | |
2014-08-15 | Document what is breaking in the client tests. | Olle Lundberg | |
2014-08-15 | Don't try to join() if we are the current thread. | Olle Lundberg | |
This fixes #354. | |||
2014-08-14 | Use a shorter timeout in banner timeout test. | Cory Benfield | |
2014-08-14 | Test banner timeout. | Cory Benfield | |
2014-08-14 | Use the new packet sanitize method in channel. | Olle Lundberg | |
2014-08-14 | Move window and packet constants. | Olle Lundberg | |
Centralise them to the common module to avoid import cycles. Also add constants for default values and use them in the transport class. | |||
2014-08-14 | Add sanitation methods for window and packet size. | Olle Lundberg | |
2014-08-14 | Add a utility method for value clamping. | Olle Lundberg | |
2014-08-14 | Add a MAX_WINDOW_SIZE constant. | Olle Lundberg | |
2014-08-14 | Bump the MIN_PACKET_SIZE to what's in the RFC. | Olle Lundberg | |
2014-08-14 | Whitespace fixes. | Olle Lundberg | |
2014-08-14 | Expose the ability to set window/packet for sftp. | Olle Lundberg | |