summaryrefslogtreecommitdiff
path: root/websocket/_http.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix issue #207, Client certificates do not work with 2.7.9+ and 3.2+robviaas2015-09-201-0/+6
| | | | | | | | | | (https://github.com/liris/websocket-client/issues/207) By observing the certfile argument, we can load the cert chain using the certfile, keyfile and password sslopt values. A more complete fix might allow us to pass in the SSLContext (rather than creating it on each connection), which would allow the caller to set all SSL options prior to calling create_connection() - this option was passed over as it required more extensive changes.
* add space.liris2015-07-231-1/+1
|
* Merge branch 'master' of https://github.com/newsham/websocket-client into ↵liris2015-07-231-0/+3
|\ | | | | | | newsham-master
| * add support for ssl cert chains to support client certsTim Newsham2015-07-171-0/+3
| |
* | Fix string formatting in exceptionCraig Jellick2015-07-171-1/+1
|/
* use wsaccel if availableAchille Roussel2015-07-101-1/+1
|
* - refactoring.liris2015-06-221-1/+1
|
* Update _http.pyDainDwarf2015-05-281-1/+2
| | | Return sock in _tunnel to avoid crash in connect()
* add comment.liris2015-04-211-0/+1
|
* set check_hostname attribute after setting verify_mode.liris2015-04-211-2/+2
| | | | | see https://github.com/liris/websocket-client/commit/b96a2e8fa765753e82eea531adb19716b52ca3ca#commitcomment-10803153 for detail. refs b96a2e8fa765753e82eea531adb19716b52ca3ca
* set check_hostname attribute before setiing verify_mode.liris2015-04-201-2/+3
|
* Fix #175: Use builtin check_hostname when availableKenjiTakahashi2015-04-201-7/+8
|
* fixed #175liris2015-04-201-1/+4
|
* Fix checking for SNI availabilityKenjiTakahashi2015-04-171-2/+2
|
* fix version checkliris2015-04-161-1/+1
|
* add some document.liris2015-04-141-12/+20
| | | | small refactoring
* Use SSLContext for socket wrapping when possibleKenjiTakahashi2015-04-131-1/+17
| | | | | Works for Python 2.7.9+ and 3.2+. Enables usage of modern SSL extensions, like SNI.
* socket absent from read_headers call in proxy_info classchrisdare042015-04-071-1/+1
|
* Minor type in proxy_info classchrisdare042015-04-071-1/+1
|
* fixed ssl socket bugliris2015-04-011-0/+1
|
* Fix erroneous argument shadowingenewhuis2015-03-311-2/+2
|
* fixed some errorv0.27.0liris2015-03-261-2/+3
|
* refs #164liris2015-03-261-2/+1
|
* Fix exception in recv() when ssl module is not availableAndrey Kosyakov2015-03-251-16/+1
|
* Merge branch 'master' of https://github.com/liris/websocket-clientliris2015-03-251-0/+1
|\
| * Moved the import errno statement from _core.py to _http.py to fix a ↵Marek Novák2015-03-241-0/+1
| | | | | | | | NameError on line 108 of _http.py
* | fixed #160 and some refactoringliris2015-03-251-8/+20
|/
* use "%r".Hiroki Ohtani2015-03-231-1/+1
|
* add "__all__"Hiroki Ohtani2015-03-191-0/+185