mirror of
https://github.com/bol-van/zapret-win-bundle.git
synced 2025-12-16 20:07:04 +03:00
13 lines
293 B
Bash
13 lines
293 B
Bash
pktws_check_http()
|
|
{
|
|
# $1 - test function
|
|
# $2 - domain
|
|
local s
|
|
|
|
[ "$NOTEST_BASIC_HTTP" = 1 ] && { echo "SKIPPED"; return; }
|
|
|
|
for s in 'http_hostcase' 'http_hostcase:spell=hoSt' 'http_domcase' 'http_methodeol'; do
|
|
pktws_curl_test_update $1 $2 --payload http_req --lua-desync=$s
|
|
done
|
|
}
|