CocoaSPDY icon indicating copy to clipboard operation
CocoaSPDY copied to clipboard

SPDY for iOS and OS X

Results 22 CocoaSPDY issues
Sort by recently updated
recently updated
newest added

In -allSPDYHeader of NSURLRequest + SPDYURLRequest.m. 1. \- NSMutableDictionary *spdyHeaders = [[NSMutableDictionary alloc] initWithDictionary:@{ 2. \- @":method" : self.HTTPMethod, 3. \- @":path" : path, 4. \- @":version" : @"HTTP/1.1", 5....

bug

When we visit "http://wsq.discuz.qq.com/",we get a sub request "http:/"(NSURLConnecction + (BOOL)canHandleRequest:(NSURLRequest *)request; return YES,so this is a valid request),get a crash on [- (NSDictionary *)allSPDYHeaderFields] of NSURLRequest+SPDYURLRequest.m. The reason is...

I try to use CocoaSPDY visit our SPDY Proxy Server in my QQ Browser,meet a bug: Visit http://m.sohu.com/n/452167131/?wscrid=15084_2,get a 301 redirect,the reason is that we have a error path:'/n/452167131?wscrid=15084_2',lost '/'...

Remove the + (void)setTLSTrustEvaluator:(id)evaluator; stuff and just use the NSURL provided mechanism for auth challenges. It's more complicated but unifies the interface better.

enhancement

the test result as followed is one url test, i am looking forward some person to give me some suggestions to solve the question. the test Method is: the same...

warning :using HTTPBodyStream on a SPDY request is subject to a potentially fatal CFNetwork when upload file iOS 9+ not call canonicalRequestForRequest even canInitWithRequest function return yes but iOS 7+...

We'd like CocoaSPDY to support HTTP/2, since it is the future and the use of SPDY will likely taper off over time. An implementation here would potentially come earlier than...

enhancement

Hey @goaway, can you explain the warning in SPDYStream.m? ``` } else if (_request.HTTPBodyStream) { SPDY_WARNING(@"using HTTPBodyStream on a SPDY request is subject to a potentially fatal CFNetwork bug"); _dataStream...

question

In SPDYSession, in _sendData, the entire input stream is sent in a tight loop, assuming: 1. The send window never closes 2. The input stream supplies data It's possible that...

enhancement

iOS 6 and OSX 10.8 added the 'allowsCellularAccess' property, which the app uses to tell the protocol whether the request is allowed to use cellular radio or not. CocoaSPDY does...

bug