afrind
afrind
I'm disinclined to merge this since it's validating misuse of HTTP.
Given that this needs to be a proxy to be really useful, we'd have to do this after making more of our proxy implementations open source. It could be more...
Can you be more specific about what you are looking for? Do you mean how to establish QUIC connections in 0-RTT?
Aha, this one: > APIs to enable zero-downtime restarts of servers, so that applications do not have to drop connections when restarting. The APIs are here: https://github.com/facebookincubator/mvfst/blob/main/quic/server/QuicServer.h#L257-L312 Though I admit,...
I never got around to adding an example here, but maybe interest has also waned. Closing for now.
Closing due to inactivity from OP
There isn't currently an API for setting datagram priorities. One of the reasons is that the RFC is somewhat vague about what the priority scheme should be for datagrams, and...
What is it you are trying to do? Pass the underlying AsyncSocket off after an HTTP/1.x CONNECT? Could you instead write an AsyncTransport implementation that uses HTTPTransaction/Handler to send/receive data?...
Here's something to get started: ``` class HTTPTransactionConnectTransport : public folly::AsyncTransport , public HTTPTransactionHandler { public: HTTPTransactionConnectTransport(folly::EventBase* eventBase) : eventBase_(eventBase) { } ~HTTPTransactionConnectTransport() override = default; folly::EventBase* getEventBase() const override...
@SteveSelva Where is the Connection: keep-alive header being stripped? Is this happening within the codec when parsing a response?