jetfire icon indicating copy to clipboard operation
jetfire copied to clipboard

WebSocket (RFC 6455) client library for iOS & OS X

Results 39 jetfire issues
Sort by recently updated
recently updated
newest added

This how Change JFRWebSocket.m line 390 to 397 with `if(status == NO) { [self doDisconnect: [self errorWithDetail:@"Invalid HTTP upgrade" code:1 userInfo: @{ @"HTTPResponseStatusCode" : @(responseStatusCode), @"HTTPResponseBuffer" : [NSString stringWithFormat:@"%s",buffer] }...

I am experiencing the `socket.connected = YES` on the disconnect delegate method. Each time i am connecting to server and its disconnect with this error: **Error Domain=JFRWebSocket Code=1000** what should...

There are a few new warnings as a result of iOS13. The main culprit seems to be... `'SecTrustEvaluate' is deprecated: first deprecated in iOS 13.0` Screenshots of the code with...

Hi In starscream project there is a method called `public init(request: URLRequest, protocols: [String]? = nil, stream: WSStream = FoundationStream())` which allows us to use custom stream object, but in...

How to solve the delay problem

We want to have a time out feature when we haven't received anything from the server including pongs from our pings, but I don't see how we can know when...

2018-06-26 15:30:33.928670+0800 CallPolice[30061:3015055] urlRequest = " { GET request, url wss:www.video110.cn:8000/skynet/ws/websocket }" 2018-06-26 15:30:33.929882+0800 CallPolice[30061:3015055] CFNetwork SSLHandshake failed (-9810) 2018-06-26 15:30:33.930174+0800 CallPolice[30061:3015055] TCP Conn 0x0 SSLHandshake failed (-9810) 2018-06-26 15:30:33.930635+0800...

We're seeing occasional deadlocks where jetfire is the only active thread. Any chance this starscream issue is also a jetfire issue? I'm guessing not. https://github.com/daltoniam/Starscream/issues/164#issuecomment-176634701

I want to share several issues I found. Maybe it can be useful to someone. When I was looking for Web Sockets library in ObjC, this was referenced as the...