From 86c3c16c3b830598a8d63699524204595d9a83c4 Mon Sep 17 00:00:00 2001 From: Neil Horman Date: Thu, 12 Dec 2024 09:40:29 -0500 Subject: [PATCH] modify docker endpoint to not do address validation on transfer test MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit quic interop uses the transfer test as part of the amplificationlimit test, and as such we can't do address validation with retry frames there, as the test requires it Reviewed-by: Tomas Mraz Reviewed-by: Saša Nedvědický (Merged from https://github.com/openssl/openssl/pull/26178) --- test/quic-openssl-docker/run_endpoint.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/quic-openssl-docker/run_endpoint.sh b/test/quic-openssl-docker/run_endpoint.sh index 829825de7ad..24fde515780 100644 --- a/test/quic-openssl-docker/run_endpoint.sh +++ b/test/quic-openssl-docker/run_endpoint.sh @@ -91,7 +91,10 @@ elif [ "$ROLE" == "server" ]; then "handshake") NO_ADDR_VALIDATE=yes SSLKEYLOGFILE=/logs/keys.log FILEPREFIX=/www quic-hq-interop-server 443 /certs/cert.pem /certs/priv.key ;; - "transfer"|"retry"|"resumption") + "transfer") + NO_ADDR_VALIDATE=yes SSLKEYLOGFILE=/logs/keys.log FILEPREFIX=/www quic-hq-interop-server 443 /certs/cert.pem /certs/priv.key + ;; + "retry"|"resumption") SSLKEYLOGFILE=/logs/keys.log FILEPREFIX=/www quic-hq-interop-server 443 /certs/cert.pem /certs/priv.key ;; "chacha20") -- 2.47.2