We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35cb521 commit 7a6c652Copy full SHA for 7a6c652
1 file changed
testssl.sh
@@ -2221,6 +2221,12 @@ check_revocation_ocsp() {
2221
fi
2222
}
2223
2224
+# waits maxsleep seconds (arg2) until process with arg1 (pid) will be killed
2225
+#
2226
+# return values
2227
+# 0: process terminated before be killed
2228
+# 3: was killed
2229
2230
wait_kill(){
2231
local pid=$1 # pid we wait for or kill
2232
local maxsleep=$2 # how long we wait before killing
@@ -6208,6 +6214,7 @@ sub_quic() {
6208
6214
local jsonID="QUIC"
6209
6215
6210
6216
[[ $DEBUG -ne 0 ]] && sclient_errfile=/dev/null
6217
+ [[ "$SERVICE" != HTTP ]] && return 0
6211
6218
6212
6219
pr_bold " QUIC ";
6213
6220
0 commit comments