Kitura-WebSocket icon indicating copy to clipboard operation
Kitura-WebSocket copied to clipboard

WebSocket support for Kitura

Results 10 Kitura-WebSocket issues
Sort by recently updated
recently updated
newest added

This job is failing: https://travis-ci.org/github/Kitura/Kitura-WebSocket/jobs/756132904 I think it's probably okay to abandon Swift 4.0.x support, but it would be prudent to understand what this problem is first.

Update repo references from IBM-Swift to Kitura

While testing Kitura-WebSocket, I wanted to run the Autobahn tests against my changes. The existing guide in `AutobahnTests.md` is helpful, but it's a pain to have to install all the...

Within the websocket protocol you are not supposed to send the reason code noReasonCodeSent. This is meant to be used internally to represent no code being sent. You then respond...

Hi! Why factory register service with lowercased string? https://github.com/IBM-Swift/Kitura-WebSocket/blob/c63bd60dca744d486f292dd5c1f50d5ac186c4bd/Sources/KituraWebSocket/WebSocket.swift#L31

I set the port to 888, then i ran the websocket server in my ubuntu. but i got this error: [2019-07-19T01:16:43.205+08:00] [ERROR] [main.swift:24 Project1] Error listening on port 8080: Error...

I've noticed that in production sometimes large messages (200kb) sent by the client are never received by Websocket callback on the server. The connection remains open and later messages are...

As there are currently no real websocket clients out there that work on Linux, extending Kitura-Websocket to be a client would be very helpful. Looks like adding client-side capability would...

OS Manjaro Linux 23.1.3 Swift 5.9.2 Package.swift ```swift import PackageDescription let package = Package( name: "wstest", dependencies: [ .package(url: "https://github.com/Kitura/Kitura-WebSocket.git" , branch: "master") ], targets: [ .executableTarget( name: "wstest", dependencies:...

I'm seeing a priority inversion error running on macOS 13. ```swift private func lockWriteLock() { _ = writeLock.wait(timeout: DispatchTime.distantFuture) } ``` ``` Thread Performance Checker: Thread running at QOS_CLASS_USER_INTERACTIVE waiting...