summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | add lock to recv functionPieter Eendebak2017-09-261-1/+2
| |/
* | fixed #354 : add documentHiroki Ohtani2017-12-091-0/+1
| |
* | Merge branch 'mikesss-close-frame-parsing'Hiroki Ohtani2017-12-091-1/+1
|\ \
| * \ Merge branch 'close-frame-parsing' of ↵Hiroki Ohtani2017-12-091-1/+1
| |\ \ |/ / / | | | | | | https://github.com/mikesss/websocket-client into mikesss-close-frame-parsing
| * | Parse close frame response correctly when reason presentMike Sutjipto2017-09-141-1/+1
| |/
* | fixed #353 : add documentHiroki Ohtani2017-12-091-0/+1
| |
* | Merge branch 'Greums-master'Hiroki Ohtani2017-12-091-0/+2
|\ \
| * \ Merge branch 'master' of https://github.com/Greums/websocket-client into ↵Hiroki Ohtani2017-12-091-0/+2
| |\ \ |/ / / | | | | | | Greums-master
| * | Fix SSL: SSLV3_ALERT_HANDSHAKE_FAILURE on Debian StretchDamien Le Bourdonnec2017-09-141-0/+2
| |/
* | fixed #352 : add documentHiroki Ohtani2017-12-091-0/+1
| |
* | Merge branch 'willstott101-gaierror'Hiroki Ohtani2017-12-092-8/+17
|\ \
| * \ Merge branch 'gaierror' of https://github.com/willstott101/websocket-client ↵Hiroki Ohtani2017-12-092-8/+17
| |\ \ |/ / / | | | | | | into willstott101-gaierror
| * | Wrap socket.gaierror with subclass of WebsocketExceptionWill Stott2017-09-142-8/+17
| |/
* | fixed #345 : add documentHiroki Ohtani2017-12-091-0/+1
| |
* | Merge branch 'bpmckinnon-master'Hiroki Ohtani2017-12-091-3/+6
|\ \
| * \ Merge branch 'master' of https://github.com/bpmckinnon/websocket-client into ↵Hiroki Ohtani2017-12-091-3/+6
| |\ \ |/ / / | | | | | | bpmckinnon-master
| * | No_proxy settings should be preserved to allow blocking when proxy settings ↵Brian Mckinnon2017-08-301-2/+1
| | | | | | | | | | | | are pulled from the environment variable
| * | Added support for windows connection refused errorBrian Mckinnon2017-08-301-1/+5
| |/
* | fixed #369Hiroki Ohtani2017-12-091-3/+1
| |
* | Merge branch 'Marenthyu-fix-origin-header'Hiroki Ohtani2017-12-091-2/+2
|\ \
| * | Update _handshake.pyPeter "Marenthyu" Fredebold2017-11-301-2/+2
|/ / | | | | see https://github.com/websocket-client/websocket-client/issues/368
* | 0.45.0ukwksk2017-11-133-2/+6
| |
* | Merge pull request #347 from mckelvin/fix-undefined-variableukwksk2017-11-131-1/+1
|\ \ | | | | | | Fix undefined variable
| * | Fix undefined variablemckelvin2017-09-011-1/+1
| |/
* | 0.44.1ukwksk2017-11-134-3/+8
| |
* | Merge pull request #344 from 71FIL/Issue_334_ca_certs_optionukwksk2017-11-131-1/+1
|\ \ | |/ |/| sslopt dict ca_cert should be ca_certs, fixes #334 (and #326)
| * sslopt dict ca_cert should be ca_certs, fixes #334Philippe Mathieu2017-08-221-1/+1
|/ | | Was 2/3 fixed in commits 287db85 and c280375.
* Merge pull request #338 from javacruft/sorted-cookie-itemsliris2017-08-111-1/+1
|\ | | | | Ensure cookie items are sorted
| * Ensure cookie items are sortedJames Page2017-07-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | Ensure that values stored inside a Cookie are sorted as the contents of a CookieJar are retrieved. This resolves some non-deterministic behaviour on some Python versions where dictionary iteration order happens to not be deterministic. Fixes: #337
* | Merge pull request #335 from kianxineki/patch-1liris2017-08-111-5/+3
|\ \ | |/ |/| Fix example app (thread TODO)
| * use threadingAlberto Galera2017-07-071-5/+3
|/
* pass ssl testliris2017-06-231-1/+1
|
* 0.44.0v0.44.0liris2017-06-234-3/+8
|
* Merge pull request #328 from aoberoi/patch-1liris2017-06-231-1/+1
|\ | | | | renames key in sslopt dict, fixes #326
| * renames key in sslopt dict, fixes #326Ankur Oberoi2017-06-221-1/+1
|/ | | must use the same key in the `sslopt` dictionary when reading and writing to it
* fixed #327v0.43.0liris2017-06-211-0/+1
| | | | revert #301
* 0.43.0liris2017-06-212-2/+2
|
* fixed #326liris2017-06-212-2/+6
|
* fixed #325v0.41.1liris2017-06-183-3/+4
|
* fixed #274v0.41.0liris2017-06-181-0/+4
|
* release 0.42.0liris2017-06-183-2/+8
|
* release 0.42.0liris2017-06-181-0/+5
|
* Merge pull request #323 from dannywillems/fix_warningliris2017-06-181-4/+4
|\ | | | | Fix warning is not defined.
| * Fix warning is not defined.Danny Willems2017-06-121-4/+4
| |
* | Merge pull request #320 from LAlbertalli/patch-1liris2017-06-181-1/+1
|\ \ | | | | | | Avoid the app to block on close on certain systems
| * | Avoid the app to block on close on certain systemsLuca Albertalli2017-05-301-1/+1
| |/ | | | | | | | | | | | | | | | | This relates to issues #317 From the man page of libc/select: ' Multithreaded applications ' If a file descriptor being monitored by select() is closed in another thread, the result is unspecified. On some UNIX systems, select() unblocks and returns, with an indication that the file descriptor is ready (a subsequent I/O operation will likely fail with an error, unless another the file descriptor reopened between the time select() returned and the I/O operations was performed). On Linux (and some other systems), closing the file descriptor in another thread has no effect on select(). In summary, any application that relies on a particular behavior in this scenario must be considered buggy. This change ensures that select unlock at least every 10 sec
* | Merge pull request #316 from edne/fix-wsdump-nocertliris2017-06-181-1/+2
|\ \ | | | | | | Fix #315: import ssl
| * | Fix #315: import sslEdoardo Negri2017-04-131-1/+2
| |/
* | Merge pull request #311 from ARMmbed/0.37.0liris2017-06-181-24/+28
|\ \ | | | | | | Fix for https://github.com/websocket-client/websocket-client/issues/306
| * | use context manager to be more safe lockJussi Vatjus-Anttila2017-03-271-26/+26
| | |