Closed rnapier closed 9 years ago
I don't think it's possible, no, since you would need to start a request and then hijack the stream before the request completes, which doesn't really make sense. You can hijack the connection as a whole, but then you lose everything.
Sorry I've been away for the last week and a bit, I'm getting up to speed on the other issues now.
SPDY streams can be bidirectional, and I'd like to communicate in both directions on a single stream. Currently the request and response code force the request body to be complete prior to processing the data (both because
conn.Request
always close the requester body, and becauseresponseStream.Run
waits for the request FIN before proceeding.Is it possible to hijack the stream so I can treat it as a ReadWriter on both sides?