summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* - add document how to disable ssl cert verification.sslliris2014-08-262-0/+21
| | | | - refs #101
* - v0.18.0liris2014-08-261-1/+1
|
* - add #102, #98 to change log.v0.17.0Hiroki Ohtani2014-08-221-0/+1
|
* Merge pull request #104 from mtrippled/exceptliris2014-08-221-1/+4
|\ | | | | Have python3 properly handle connection refused exceptions.
| * Have python3 properly handle connection refused exceptions.Mark Travis2014-08-211-1/+4
|/ | | | carry remote IP address in socket connect exception object
* - fixed #102liris2014-08-203-1/+7
|
* Merge pull request #99 from NixM0nk3y/masterliris2014-08-061-1/+1
|\ | | | | add missing logging import
| * add missing logging importNick Gregory2014-08-051-1/+1
|/
* Merge pull request #96 from Qambar/patch-1liris2014-07-221-1/+1
|\ | | | | Fixed spelling mistakes
| * Update README.rstQambar Raza2014-07-221-1/+1
|/ | | Fixed spelling mistakes
* - 0.16.0av0.16.0aliris2014-07-171-1/+1
|
* - add python2 and python3 to clissifiersliris2014-07-171-0/+2
|
* - updatev0.16.0liris2014-07-161-0/+4
|
* - change from alpha to betaliris2014-07-161-1/+1
|
* - the same module name for py3liris2014-07-161-5/+2
|
* Merge branch 'cjhanks-master'liris2014-07-081-10/+22
|\
| * Merge branch 'master' of https://github.com/cjhanks/websocket-client into ↵liris2014-07-081-10/+22
| |\ |/ / | | | | cjhanks-master
| * Fix address resolution for cases where first result is not useful.CjHanks2014-07-041-10/+22
| | | | | | | | | | | | | | | | | | The socket connection logic always presumed the first returned result from socket.getaddrinfo(...) is the target. However it is not uncommon to be listening IPv4 while ignore IPv6. This code iterates through the return list until one connects without a CONNECTION REFUSED error, if all fail, the exception is rethrown. `man getaddrinfo` demonstrates a similar use pattern in C.
* | - fixed #93liris2014-07-081-0/+1
|/
* - fix format.liris2014-07-021-0/+1
|
* - update change log.liris2014-07-011-0/+4
|
* - refs #91liris2014-06-262-33/+2
| | | | | - give up to support socket io - we should handshake with socket io out of this module.
* - fixed #91liris2014-06-242-51/+53
| | | | | - append documentation. - refactoring.
* Merge branch 'smvv-master'liris2014-06-241-5/+53
|\
| * Merge branch 'master' of https://github.com/smvv/websocket-client into ↵liris2014-06-241-5/+53
| |\ |/ / | | | | | | | | | | smvv-master Conflicts: websocket/_core.py
| * Add support for socket.io 0.9 serversSander Mathijs van Veen2014-06-151-6/+54
| |
* | - fixed #92liris2014-06-232-9/+51
|/ | | | - lock send method for multithread programing.
* Merge pull request #90 from battlemidget/patch-1liris2014-06-111-1/+0
|\ | | | | _core.py: fix syntax error
| * _core.py: fix syntax erroradam.stokes2014-06-101-1/+0
|/ | | Fix syntax error with an additional paren
* - fixed #89liris2014-06-091-1/+2
|
* Merge pull request #88 from rjschwei/useSystemCertsliris2014-06-061-2/+6
|\ | | | | System certs
| * - Allow the use of teh system default certificates by not installing theRobert Schweikert2014-06-051-2/+6
| | | | | | | | | | | | | | supplied cacert.pem file + This allows distributions to package websocket without having to ship/maintain the cacert.pem file that is part of this source tree and use the distribution configured certs
* | - fixed #49liris2014-06-061-2/+6
| |
* | Merge pull request #87 from pedrudehuere/masterliris2014-06-061-2/+2
|\ \ | |/ |/| Update _core.py
| * Update _core.pypedrudehuere2014-06-051-2/+2
|/ | | re-fixed issue #49
* - refactoring.liris2014-05-301-41/+78
| | | | - pack some fields to object.
* - refactoringliris2014-05-306-1116/+1231
| | | | - split to multiple file
* start 0.16.0liris2014-05-281-1/+1
|
* ignore egg infoliris2014-05-281-1/+1
|
* - set ws to default schemeliris2014-05-261-1/+1
|
* - fixed #84liris2014-05-264-3/+10
|
* - for release 0.14.1v0.14.1liris2014-05-202-1/+5
|
* - work on python2.6liris2014-05-162-2/+13
|
* - update document.v0.14.0liris2014-05-151-7/+1
|
* - fixed #82liris2014-05-082-8/+16
|
* Merge branch 'louisliutw-master'liris2014-05-081-0/+3
|\
| * Merge branch 'master' of https://github.com/louisliutw/websocket-client into ↵liris2014-05-081-1/+4
| |\ | | | | | | | | | louisliutw-master
| | * remove debug codes..Louis Liu2014-05-071-1/+0
| | |
| | * Bug fix: socket always connects to port 80.Louis Liu2014-05-071-1/+2
| | |
| | * send cookie in options.Louis Liu2014-05-071-0/+3
| | | | | | | | | | | | | | | example: create_connection(url, cookie="name=kerker; age=23;")