racket-rfc6455 icon indicating copy to clipboard operation
racket-rfc6455 copied to clipboard

RFC 6455 WebSockets support for Racket.

Results 11 racket-rfc6455 issues
Sort by recently updated
recently updated
newest added

The following program runs without errors: ```racket #lang racket/base (require net/rfc6455 net/url) (define done-sem (make-semaphore)) (void (ws-serve #:port 8080 (λ (conn req) (printf "received ~v\n" (ws-recv conn)) (ws-close! conn) (ws-send!...