0
I Use This!
Very Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Aug 24, 2024 — Aug 24, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
[project @ [email protected]] (possibly misguided) attempt to reduce paramiko's exports More... over 19 years ago
[project @ [email protected]] move another demo script in, and do a bit more cleanup More... over 19 years ago
[project @ [email protected]] i'm a dork, actually these are needed to login to the demo server More... over 19 years ago
[project @ [email protected]] no longer need these More... over 19 years ago
[project @ [email protected]] add 'clean' rule More... over 19 years ago
[project @ [email protected]] code from mike looijmans for a windows interactive shell -- while i'm mucking around in here, clean up the demos a bit too More... over 19 years ago
[project @ [email protected]] when setting a new log channel, pass that info on to the packetizer More... over 19 years ago
[project @ [email protected]] winscp doesn't like it if the server sends version info before the client does More... over 19 years ago
[project @ [email protected]] catch a case where the sftp server might give an invalid error code More... over 19 years ago
[project @ [email protected]] some performance improvements: be a LOT less aggressive about stirring the randpool; use buffering when reading the banner; add a hook for using a native-compiled hmac (which gives the biggest boost, but should probably be done in pycrypto) More... over 19 years ago
[project @ [email protected]] john points out i could just use None for no-value and it would be a lot simpler... good point More... over 19 years ago
[project @ [email protected]] john a meinel caught a typo in the previous sort() patch More... over 19 years ago
[project @ [email protected]] add Transport.atfork to handle the case where a forked child needs to cleanly dispose of a Transport where the socket is shared with its parent More... over 19 years ago
[project @ [email protected]] patch from jan hudec to fix a python 2.4-ism More... over 19 years ago
[project @ [email protected]] fix a bunch of pychecker warnings, some of which were actual (but unlikely) bugs More... over 19 years ago
[project @ [email protected]] ENOTDIR should be translated into NO_SUCH_FILE -- openssh does it, and there really isn't any better mapping for it More... over 19 years ago
[project @ [email protected]] add setuptools/easy_setup support More... over 19 years ago
[project @ [email protected]] bump version to 1.5.2 More... over 19 years ago
[project @ [email protected]] experimental util functions for parsing/getting openssh host config, and unit tests (turned out to be pretty easy) More... over 19 years ago
[project @ [email protected]] don't call _send_user_message() while holding the channel lock. the call may block waiting for CTS (during rekey), and the feeder thread may be waiting on the channel lock to clear out channel traffic before it gets to the kex-init. instead, the 2 methods that wanted to send from inside the lock now just return messages to send. slightly hacky but functional. :) More... over 19 years ago
[project @ [email protected]] remove pre-1.0 news, bzr will preserve it for future archivists ;) More... over 19 years ago
[project @ [email protected]] add comments to demo and demo_simple explaining that they don't work on windows More... over 19 years ago
[project @ [email protected]] add unit test for compression More... over 19 years ago
[project @ [email protected]] remember once a transport is authenticated, so that after rekeying when using openssh-style delayed zlib ([email protected]), we know it's okay to immediately start new compression More... over 19 years ago
[project @ [email protected]] fix typo in doc More... over 19 years ago
[project @ [email protected]] windows users who switch between cygwin and native mode may sometimes have an SSH_AUTH_SOCK environ var set from cygwin, even when in native mode there's no such thing as an AF_LOCAL socket -- check for native windows mode and avoid trying unix ssh agents in that case More... over 19 years ago
[project @ [email protected]] turn down output for unit tests by default, but add --verbose option to manually crank them back up More... over 19 years ago
[project @ [email protected]] new unit test for doing a bunch of prefetches at once More... over 19 years ago
[project @ [email protected]] when closing an sftp file because of __del__, don't wait for a response, just shoot off a request and leave (on linux, the GC is run from a devoted thread) More... over 19 years ago
[project @ [email protected]] serialize outgoing requests (duh) -- when prefetching multiple files, there may be several threads pumping out read requests More... over 19 years ago