From c332c9d42183668608a018456e52c7b53fd79b98 Mon Sep 17 00:00:00 2001 From: Benjamin Saunders Date: Mon, 22 Jul 2024 21:46:33 -0700 Subject: [PATCH] Remove stale README content --- README.md | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/README.md b/README.md index 62ff79f..303dbca 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,6 @@ You can find the container at DockerHub: [stammw / quinn-interop](https://hub.do ## Directory summary: -* [submodule] quinn: the QUIC implementation -* [submodule] h3: the HTTP/3 implementation * [submodule] quic-interop-runner: the testing application, to test locally * quinn-interop: interop application to be deployed into the container @@ -44,23 +42,3 @@ docker build -f Dockerfile -t stammw/quinn-interop:latest . cd quic-interop-runner/ python3 run.py -d -s quic-go -c quinn ``` - -### Using Vagrant - -It's possible that your system doesn't handle the network correctly for the interop tester to work. In this case, a Vagrant box is available: - -``` sh -# Spin up the vagrant box -vagrant up - -# Then, connect to it and start testing -vagrant ssh -(cd ../ && docker build -f Dockerfile -t stammw/quinn-interop:latest .) \ - && python3 run.py -d -s quic-go -c quinn -``` - -When you need to start hacking a bit, this command might be handy: - -``` sh -vagrant rsync-auto -```