steveselva
steveselva
I am using Proxygen as a MITM proxy server. While establishing a WebSocket connection from downstream to upstream, this error occurred. Here, the websocketAcceptKey is stored in downstream from the...
@afrind @jbeshay Can you help with this issue pls.
Apologies, I didn't see your message. And I have handled the WebSocket just by converting it into AsyncSocket, so it just works like a HTTP Connect Request.
Is there any possibility of implementing this in future?
After HTTP CONNECT, I am planning to detach the folly::AsyncTransport from the HTTPSession, and then just forward the data from both ends. And I have optimized that forwarding code similar...
In my case, I want to do a proxy chain, so the proxygen has to chain the response is received from upstream. In this case, it should set the headers...
@afrind This is happening while generating headers for downstream from the headers received from upstream. The upstream headers object contains the Connection: keep-alive header. But when the downstream headers object...
Yeah sure, let me raise a PR.
Raised a PR : https://github.com/facebook/proxygen/pull/532 Kindly review it.
Updated HTTP1xCodec and Added new test, @afrind please review.