From: Neil Horman Date: Thu, 12 Dec 2024 14:40:29 +0000 (-0500) Subject: modify docker endpoint to not do address validation on transfer test X-Git-Tag: openssl-3.5.0-alpha1~288 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=86c3c16c3b830598a8d63699524204595d9a83c4;p=thirdparty%2Fopenssl.git modify docker endpoint to not do address validation on transfer test 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) --- 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")