SwiftWebSocket icon indicating copy to clipboard operation
SwiftWebSocket copied to clipboard

Fast Websockets in Swift for iOS and OSX

Results 64 SwiftWebSocket issues
Sort by recently updated
recently updated
newest added

Sorry for my English the library is very slow!!! With a large data stream, the delay of packets reaches 1-10 minutes I ran parallel objective-c + socketRocket and swift +...

I'm getting the following warning about `substring(to: )` being deprecated. > 'substring(to:)' is deprecated: Please use String slicing subscript with a 'partial range upto' operator. It's inside the `readResponse()` function...

The substring method in the WebSocket needs to be corrected to adhere to the new Swift 4 changes. Lines 1147-1148 to be exact. The correct code is as follows: key...

Would it be possible to add a configuration to enable / disable the Origin header? I'm doing this request because I'm connecting to a device that does not seem to...

I'm getting this error when trying connect. _HTTP/1.1 426 Upgrade Required_

1027 var path = CFURLCopyPath(req.url! as CFURL!) as String //Using '!' in this location is deprecated and will be removed in a future release; consider changing this to '?' instead...

On Swift 4+, connecting to a web socket on an esp8266. When I restart the ESP, the socket is obviously closed, but none of the events fire in the swift...

All delegate methods plus the socket establishment are triggered on the main-thread. This is blocking UI and causing ugly glitches. is there anything I can configure to run everything in...

Not receiving any message from server in webSocketMessageText in swift 3. this method never get called in.

bug

I need to check whether the socket connection established successfully. In order to verify that how to send the following mattermost authentication header over the connection? { "seq": 1, "action":...