twitter-archive / CocoaSPDY

SPDY for iOS and OS X
Apache License 2.0
2.39k stars 233 forks source link

Why not use NSMutableURLRequest's HTTPBodyStream? #121

Open kgoodier opened 9 years ago

kgoodier commented 9 years ago

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 = _request.HTTPBodyStream;
}