]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
modify docker endpoint to not do address validation on transfer test
authorNeil Horman <nhorman@openssl.org>
Thu, 12 Dec 2024 14:40:29 +0000 (09:40 -0500)
committerNeil Horman <nhorman@openssl.org>
Mon, 17 Feb 2025 16:27:33 +0000 (11:27 -0500)
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 <tomas@openssl.org>
Reviewed-by: Saša Nedvědický <sashan@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26178)

test/quic-openssl-docker/run_endpoint.sh

index 829825de7adde7f0088df2b71ecbc3586af429dd..24fde5157801c238e6b37523e368f582d1ded32f 100644 (file)
@@ -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")