summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-08-25Merge branch '1.14'Jeff Forcier
2014-08-25Merge branch '1.13' into 1.14Jeff Forcier
2014-08-25Fix docstrings re: addition of `getfo`/`putfo`, closes #229Jeff Forcier
2014-08-25Changelog re #169Jeff Forcier
2014-08-25Minor refactor, re #169Jeff Forcier
2014-08-25Merge branch '1.14'Jeff Forcier
Conflicts: sites/www/changelog.rst
2014-08-25Merge branch '1.13' into 1.14Jeff Forcier
Conflicts: sites/www/changelog.rst
2014-08-25Changelog re #285, re #352Jeff Forcier
Conflicts: sites/www/changelog.rst
2014-08-25Support passing in "buffer" objects again where bytestrings are expected.Jelmer Vernooij
This fixes bzr's use of paramiko. Fixes issue #343/#285.
2014-08-25Changelog re #285, re #352Jeff Forcier
2014-08-25Merge branch 'master' into 352-intJeff Forcier
2014-08-25Changelog re #371Jeff Forcier
2014-08-25Add a plus to our 3.3 support to denote 3.4 and onJeff Forcier
2014-08-25Merge branch 'master' into 371-intJeff Forcier
2014-08-25reorder key exchange methods to increase securitySebastian Deiss
2014-08-25Merge branch 'master' into gssapi-py3-supportSebastian Deiss
2014-08-21Use the new decorator and remove repeated code.Olle Lundberg
2014-08-21Add a decorator for checking channel openness.Olle Lundberg
This decorator will be used in future commits.
2014-08-21More tweaks - don't make it sound like we routinely support >3, we don'tJeff Forcier
2014-08-21This isn't worth having and then always forgetting aboutJeff Forcier
2014-08-18Sphinx conf cleanupJeff Forcier
2014-08-15Remove raising of socket excpetions from sendall*.Olle Lundberg
2014-08-15Use new _send method.Olle Lundberg
2014-08-15Add 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-15Whitespace fixes.Olle Lundberg
2014-08-15Let 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-15Don't end a line with whitespace.Olle Lundberg
This might be stripped by editors at will, which will make some tests brake.
2014-08-15Remove 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-15Strip whitespace.Olle Lundberg
2014-08-15Strip whitespace.Olle Lundberg
2014-08-15Document potential brokeness.Olle Lundberg
2014-08-15Document what is breaking in the client tests.Olle Lundberg
2014-08-15Don't try to join() if we are the current thread.Olle Lundberg
This fixes #354.
2014-08-14Use a shorter timeout in banner timeout test.Cory Benfield
2014-08-14Test banner timeout.Cory Benfield
2014-08-14Use the new packet sanitize method in channel.Olle Lundberg
2014-08-14Move 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-14Add sanitation methods for window and packet size.Olle Lundberg
2014-08-14Add a utility method for value clamping.Olle Lundberg
2014-08-14Add a MAX_WINDOW_SIZE constant.Olle Lundberg
2014-08-14Bump the MIN_PACKET_SIZE to what's in the RFC.Olle Lundberg
2014-08-14Whitespace fixes.Olle Lundberg
2014-08-14Expose the ability to set window/packet for sftp.Olle Lundberg
2014-08-14Support specyfiying window/packet size per sessionOlle Lundberg
Also update the documentation about values and the adverse effects that changing them might create.
2014-08-14Support py3.4.Olle Lundberg
2014-08-14Join the threads with a low timeout.Olle Lundberg
Instead of using private methods on the threading class, let the thread join, but with a low timeout.
2014-08-13Add possibility to set default sizes.Olle Lundberg
This change adds two new parameters to the constructor of the Transport class. Letting the user set the default windows size and default max packet size for the instance.
2014-08-13Rename max_packet_size and window_size.Olle Lundberg
This is to indicate that they should be seen as defaults and can be overriden.
2014-08-13Change window and packet size to match opensshs'.Olle Lundberg
Update tests to match the new numbers.
2014-08-11We support 3.2Jeff Forcier