summaryrefslogtreecommitdiffstats
path: root/tests/auto/network/access/qabstractnetworkcache/tests/httpcachetest_expires304.cgi
blob: 9ae28a00c80c6a1aa6525001ddce43580aa486f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
if [ "${HTTP_IF_MODIFIED_SINCE}" == "Mon, 30 Oct 2028 14:19:41 GMT" ] ; then
    echo "Status: 304"
    echo ""
    exit
fi

echo "Expires: Mon, 30 Oct 2028 14:19:41 GMT"
echo "Content-type: text/html"
echo ""
echo "Hello World!"