Hyper based HTTP proxy ? #2747
Unanswered
tomershaniii
asked this question in
Q&A
Replies: 1 comment 1 reply
-
hyper is both a server and a client. Many proxies have been written using it. They usually do something specific (for example, linkerd2). Starting a new proxy in hyper is quite simple: create a hyper server that passes the request on to a hyper client, and send that response back to the original request. hyper does not support HTTP/1.1 pipelining, since it's a deprecated HTTP feature. It's better to use HTTP/2. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Looking for an HTTP proxy implementation in rust, with support for HTTP/1.1 pipelining.
Was wondering if a hyper based implementation exists or at all makes sense (as hyper is primarily designed to be a server)
Beta Was this translation helpful? Give feedback.
All reactions