summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2015-09-30Rework changelog entries re #491 a bitJeff Forcier
Closes #491, closes #62, closes #439
2015-09-30Merge branch '1.15' into 491-intJeff Forcier
2015-09-30Don't use --coverage for tests under 3.2 anymoreJeff Forcier
2015-09-30No idea why this only tanked tests on Python 3, ugh @ our old crusty test suiteJeff Forcier
2015-09-30Changelog closes #490, closes #500 (cherry-pick)Jeff Forcier
2015-09-30Silently ignore invalid keys in HostKeys.load()Martin Topholm
When broken entries exists in known_hosts, paramiko raises SSHException with "Invalid key". This patch catches the exception during HostKeys.load() and continues to next line. This should fix #490.
2015-09-30Changelog closes #404Jeff Forcier
2015-09-30Add informative BadHostKeyExceptionLoic Dachary
Displaying the keys being compared makes it easy to diagnose the problem. Otherwise there is more guessing involved. Signed-off-by: Loic Dachary <loic@dachary.org>
2015-09-30Changelog closes #488Jeff Forcier
2015-09-30Typo causes failure if Putty Pageant is running.Steve Cohen
2015-09-30Changelog closes #353Jeff Forcier
2015-09-30Merge branch '1.15' into 482-intJeff Forcier
2015-04-29Not sure how this got nukedJeff Forcier
2015-04-29Merge branch '1.14' into 1.15Jeff Forcier
Conflicts: tasks.py
2015-04-29Merge branch '1.13' into 1.14Jeff Forcier
2015-04-29Packaging updatesJeff Forcier
2015-02-28Replace/add RFC links using ``:rfc:``, /ht @sigmavirus24Jeff Forcier
2015-02-24Patch resolving the timeout issue on lost conection.Olle Lundberg
(This rolls in patch in #439)
2015-02-24Expose handshake timeout in the transport API.Olle Lundberg
This is a reimplementation of #62.
2015-02-24Add support for signaling a handshake process in packetizer.Olle Lundberg
This makes it possible to raise an EOFError if the handshake process has started but takes too long time to finish.
2015-02-04Merge branch '1.15'Jeff Forcier
2015-02-04Changelog fixes #402, closes #479Jeff Forcier
2015-02-04Update agent.pyjordo1ken
Updated logic for error checking.
2015-02-04Removed debug print statementsKen Jordan
2015-02-04Updated agent.py to print a more appropriate exception when unable to ↵Ken Jordan
connect to the SSH agent
2015-01-26Revert add_int and get_int to strictly 32-bits and add adaptive versionsScott Maxwell
2015-01-05Merge pull request #468 from ThiefMaster/patch-1Jeff Forcier
Fix typo in _winapi.py
2015-01-02Merge branch '1.14' into 1.15Jeff Forcier
2015-01-02Merge branch '1.13' into 1.14Jeff Forcier
2015-01-02Happy new yearJeff Forcier
2015-01-01Fix typoThiefMaster
2014-12-19Cut 1.15.2Jeff Forcier
2014-12-19Merge branch '1.14' into 1.15Jeff Forcier
2014-12-19Cut 1.14.2Jeff Forcier
2014-12-19Merge branch '1.13' into 1.14Jeff Forcier
2014-12-19Cut 1.13.3Jeff Forcier
2014-12-18Mark more backported support issues as suchJeff Forcier
2014-12-18Merge branch '1.14' into 1.15Jeff Forcier
Conflicts: sites/www/changelog.rst
2014-12-18Merge branch '1.13' into 1.14Jeff Forcier
Conflicts: sites/www/changelog.rst
2014-12-18Mark some backported support items as suchJeff Forcier
2014-12-18Merge branch '1.14' into 1.15Jeff Forcier
Conflicts: sites/www/changelog.rst
2014-12-18Merge branch '1.13' into 1.14Jeff Forcier
2014-12-18Fix busted changelog indentJeff Forcier
2014-12-18Merge branch '1.14' into 1.15Jeff Forcier
Conflicts: sites/www/changelog.rst
2014-12-18Merge branch '1.13' into 1.14Jeff Forcier
2014-12-18Changelog re #413, closes #454Jeff Forcier
2014-12-18read in >1 byte chunks, and set a useful timeout on select()John Morrissey
this way, we're not rolling this loop over nearly as much, while still preserving the overall timeout semantics
2014-12-17Changelog closes #455Jeff Forcier
2014-12-17Suggest a MIN_WINDOW_SIZE and MIN_PACKET_SIZEJeff Quast
Not fully confident with this change, though I will describe my findings fully in the pull request. The OpenSSH client requests a maximum packet size of 16384, but this MIN_PACKET_SIZE value of 32768 causes its request to be "clamped" up to 32768, later causing an error to stderr on the OpenSSH client. Suggest then, to delineate MIN_WINDOW_SIZE from MIN_PACKET_SIZE, as they are applied. I don't think there is any minimum value of MIN_PACKET_SIZE, however we can suggest a value of 4096 for now.
2014-12-17Log "clamped" value of self.out_max_packet_sizeJeff Quast
This log message misleads one to believe a maximum packet size, such as 16384 requested by OpenSSH has been honored, when in fact it is "clamped" to 32768.