summaryrefslogtreecommitdiff
path: root/eventlet/green/ssl.py
Commit message (Expand)AuthorAgeFilesLines
* Python 3 compat: Improve SSL and WSGI compatJakub Stasiak2014-10-111-6/+9
* Reformat with autopep8Jakub Stasiak2014-10-111-4/+7
* Fix SSL socket wrapping and Python 2.7.9 compatibilityJakub Stasiak2014-10-111-2/+5
* Python 3 compat: Improve various bitsJakub Stasiak2014-10-101-17/+46
* PEP-8 fixesSergey Shepelev2014-08-271-22/+25
* Fix second simultaneous read (parallel paramiko issue)Jan Grant2014-08-121-5/+11
* python3 compat: remove lots of Python 2.5 and earlier dependent code; use pri...Sergey Shepelev2013-12-031-19/+19
* python3 compat: 2to3: `except E as e:` syntaxDavanum Srinivas2013-12-031-6/+6
* green.ssl: Fix NameError GH-17Jakub Stasiak2013-08-121-1/+1
* ssl: socket.sendall(): trampoline if sent 0 bytes; fixes CPU burnraylu2013-01-121-0/+2
* Bugfix issue #104: an SSL unwrap() sends data, and so it needs trampolining.Brandon Craig Rhodes2011-11-021-1/+2
* Using slurp_properties throughout eventlet.green.Ryan Williams2011-04-091-3/+2
* eventlet.green.ssl busywaiting on send.Ryan Williams2011-02-151-35/+11
* Support for SSL websockets, which also happens to improve our SSL support in ...Ryan Williams2010-09-161-1/+3
* More robust transference of properties from stdlib modules. Also more effici...Ryan Williams2010-08-181-1/+3
* Some 2.7 compatibility work, since the emulated APIs changed a bit.Ryan Williams2010-07-061-18/+26
* Consolidated execs in various green modules.Ryan Williams2010-06-251-2/+1
* merge with which_linden tipamajorek2010-03-221-10/+5
|\
| * Code simplification.amajorek2010-03-221-10/+5
* | Slightly more efficient trampoline, ssl no longer calls fileno needlessly.Ryan Williams2010-03-141-11/+11
|/
* module eventlet.common moved to eventlet.supportamajorek2010-03-091-1/+1
* New eventlet.common module to create version-neutral layer. For now only get_...amajorek2010-02-281-5/+6
* py3k - extracting errno from exception wrapped into get_errno function to wor...amajorek2010-02-271-16/+16
* first draft of making eventlet py3k compatible.amajorek2010-02-261-7/+6
* Tweaked the way monkey_patch works so that it'll work better if called after ...Ryan Williams2010-02-071-0/+1
* Moved trampoline into hubs/__init__, which maybe is the best place for it; op...Ryan Williams2010-01-241-1/+1
* Corrected timeout behavior of ssl sockets, better docs on the annoying close ...Ryan Williams2009-12-061-13/+24
* Added test for ssl module, fixed bug that it found with definition of setbloc...Ryan Williams2009-11-291-1/+7
* Added eventlet.green.OpenSSL to further rationalize our SSL support, carved o...Ryan Williams2009-11-271-7/+11
* Matching behavior of 2.6's socket.ssl method more closely.Ryan Williams2009-11-241-2/+1
* Moved GreenSSLObject into eventlet.green.socket, cleaned up imports slightly,...Ryan Williams2009-11-241-1/+2
* Initial implemenation of using ssl module instead of pyOpenSSL.Ryan Williams2009-11-211-0/+295