Skip to content

Commit

Permalink
neqo-http3-server: Implement support for --use-old-http
Browse files Browse the repository at this point in the history
For qns mode, we need to support HTTP/0.9. Instead of adding qns mode to
http server, I added H/0.9 to http3-server, since it already supports
transport::Server, and has a more developed event loop.

Add a 'HttpServer' trait that is implemented by Http3Server and
Http09Server.

Implement Http09Server. Add a DenyZeroRttChecker since Server requires one
be passed in.
  • Loading branch information
Andy Grover committed Jul 13, 2020
1 parent ff6dc50 commit 4063034
Show file tree
Hide file tree
Showing 2 changed files with 291 additions and 92 deletions.
1 change: 1 addition & 0 deletions neqo-http3-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ neqo-common = { path="./../neqo-common" }
neqo-http3 = { path = "./../neqo-http3" }
neqo-qpack = { path = "./../neqo-qpack" }
structopt = "0.3.7"
regex = "1"
mio = "0.6.17"
mio-extras = "2.0.5"
log = {version = "0.4.0", default-features = false}
Expand Down
Loading

0 comments on commit 4063034

Please sign in to comment.