Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | make: Fix distcheck and add publish target. | David Thompson | 2022-11-12 | 1 | -1/+10 |
| | |||||
* | Update .gitignore. | David Thompson | 2022-11-12 | 1 | -0/+2 |
| | |||||
* | guix: Modernize package definition. | David Thompson | 2022-11-12 | 1 | -21/+15 |
| | |||||
* | check: Support guile-3.0.5. | Jan (janneke) Nieuwenhuizen | 2021-03-18 | 1 | -1/+3 |
| | | | | | | | See https://bugs.gnu.org/42713. * tests/frame.scm (test-runner): New define. Use it in exit statement. | ||||
* | Use inet-pton instead of inet-aton. | Jan (janneke) Nieuwenhuizen | 2021-03-18 | 1 | -1/+3 |
| | | | | | * web/socket/server.scm (make-server-socket): Add #:family parameter and use it for inet-pton. | ||||
* | mingw: Hack for missing /dev/urandom. | Jan (janneke) Nieuwenhuizen | 2021-03-18 | 1 | -3/+8 |
| | | | | | * web/socket/client.scm (open-entropy-port): Add hack for missing /dev/urandom. | ||||
* | client: Export websocket-socket. | Jan (janneke) Nieuwenhuizen | 2021-03-18 | 1 | -0/+2 |
| | | | | * web/socket/client.scm (web): Export websocket-socket. | ||||
* | build: Add web/socket/client.scm. | Jan (janneke) Nieuwenhuizen | 2021-03-18 | 1 | -1/+2 |
| | | | | * Makefile.am (SOURCES): Add web/socket/client.scm. | ||||
* | build: Support cross building. | Jan (janneke) Nieuwenhuizen | 2021-03-18 | 2 | -1/+2 |
| | | | | | * configure.ac: Add AC_CANONICAL_HOST to get host. * Makefile.am (.scm.go): Set it as target. | ||||
* | Cater for guile 2.2, 3.0. | Jan (janneke) Nieuwenhuizen | 2021-03-18 | 3 | -4/+11 |
| | | | | * Makefile.am (godir, moddir): Softcode effective version. | ||||
* | client: Return no values from close-websocket. | David Thompson | 2016-03-25 | 1 | -1/+2 |
| | | | | * web/socket/client.scm (close-websocket): Return an unspecified value. | ||||
* | client: Validate accept key when handshaking. | David Thompson | 2016-03-25 | 1 | -25/+25 |
| | | | | | | | * web/socket/client.scm (generate-websocket-nonce): Rename to... (generate-client-key): ...this. (make-handshake-request): Change argument list. (handshake): Validate accept key. | ||||
* | Extract accept key generation to a new module. | David Thompson | 2016-03-25 | 3 | -13/+46 |
| | | | | | | | * web/socket/server.scm (handshake): Moved. (make-handshake-response): Use new make-accept-key procedure. * web/socket/utils.scm: New file. * Makefile.am (SOURCES): Add it. | ||||
* | client: Mask sent frames. | David Thompson | 2016-03-25 | 1 | -2/+6 |
| | | | | | * web/socket/client.scm (generate-masking-key): New procedure. (websocket-send): Mask the frame to be sent. | ||||
* | client: Generate random nonce for handshake. | David Thompson | 2016-03-25 | 1 | -5/+11 |
| | | | | | | | * web/socket/client.scm (generate-websocket-nonce): New procedure. (make-handshake-request): Change argument from uri to websocket. Generate a real nonce for Sec-WebSocket-Key header. (handshake): Adjust make-handshake-request call. | ||||
* | client: Add entropy source. | David Thompson | 2016-03-25 | 1 | -2/+14 |
| | | | | | | | * web/socket/client.scm (<websocket>)[entropy-port]: New field. (open-entropy-port): New procedure. (make-websocket): Open entropy port. (close-websocket): Close entropy port. | ||||
* | client: Add custom printer for <websocket>. | David Thompson | 2016-03-25 | 1 | -0/+8 |
| | | | | | * web/socket/client.scm (display-websocket): New procedure. (<websocket>): Set custom record type printer. | ||||
* | client: Keep track of socket state. | David Thompson | 2016-03-25 | 1 | -12/+37 |
| | | | | | | | | | | | * web/socket/client.scm (<websocket>)[state]: New field. (websocket-state, set-websocket-state!): New field accessors. (websocket-connecting?, websocket-open?, websocket-closing?, websocket-closed?): New procedures. (handshake): Set socket to 'open' state after successful handshake. (make-websocket): Set socket to 'connecting' state initially. (close-websocket): Set socket to 'closing' before sending close frame, and then to 'closed' underlying TCP socket is closed. | ||||
* | frame: Fix typo in error message. | David Thompson | 2016-03-25 | 1 | -1/+1 |
| | | | | * web/socket/frame.scm (read-frame): s/to/too/ | ||||
* | client: Wait for server to close connection. | David Thompson | 2016-03-25 | 1 | -1/+12 |
| | | | | | * web/socket/client.scm (close-websocket): Wait for server to close the connection for a reasonable amount of time. | ||||
* | server: Handle client disconnects in a more robust manner. | David Thompson | 2016-03-25 | 1 | -3/+14 |
| | | | | | | * web/socket/server.scm (serve-client): Handle EOF object and client sockets that have closed while trying to echo the close frame. (run-server): Ignore SIGPIPE to prevent server crashes. | ||||
* | Add client module. | David Thompson | 2016-03-24 | 1 | -0/+143 |
| | |||||
* | Add guix package. | David Thompson | 2015-12-09 | 1 | -0/+71 |
| | |||||
* | Autotoolify. | David Thompson | 2015-12-09 | 5 | -0/+139 |
| | |||||
* | Add missing "Lesser" in licensing comments. | David Thompson | 2015-12-09 | 2 | -6/+6 |
| | |||||
* | Move base64 and SHA-1 modules to (web socket) namespace. | David Thompson | 2015-12-09 | 3 | -4/+4 |
| | |||||
* | tests: Add frame tests. | David Thompson | 2015-12-02 | 1 | -0/+173 |
| | |||||
* | frame: Fix masking error in write-frame. | David Thompson | 2015-12-02 | 1 | -2/+1 |
| | | | | | * web/socket/frame.scm (write-frame)[masked-data]: Correctly copy the source bytevector. | ||||
* | frame: Add make-ping-frame. | David Thompson | 2015-12-02 | 1 | -4/+11 |
| | | | | * web/socket/frame.scm (make-ping-frame): New procedure. | ||||
* | Add LGPL license information. | David Thompson | 2015-11-08 | 3 | -0/+215 |
| | |||||
* | Update test page. | David Thompson | 2015-11-08 | 1 | -2/+2 |
| | |||||
* | Use new Expat licensed base64 module. | David Thompson | 2015-11-08 | 1 | -118/+173 |
| | |||||
* | Add test HTML page. | David Thompson | 2015-11-08 | 2 | -14/+22 |
| | |||||
* | frame: Improve doc strings and comments. | David Thompson | 2015-11-08 | 1 | -3/+14 |
| | |||||
* | server: Allow handler to ignore messages. | David Thompson | 2015-11-08 | 1 | -9/+13 |
| | |||||
* | Add missing code and a README. | David Thompson | 2015-11-08 | 3 | -0/+337 |
| | |||||
* | Fix typo. | David Thompson | 2015-11-07 | 1 | -1/+1 |
| | |||||
* | Add (base64) module. | David Thompson | 2015-11-07 | 1 | -0/+230 |
| | |||||
* | Add (web socket server) module. | David Thompson | 2015-11-07 | 1 | -0/+116 |
| | |||||
* | Improve frame module. | David Thompson | 2015-11-07 | 1 | -17/+87 |
| | |||||
* | Add (web socket frame) module. | David Thompson | 2015-11-07 | 1 | -0/+263 |