mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
don't apply no-cache to .qtv file because Internet Exploder doesn't like it
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2478 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
78285c3d00
commit
3a2310238d
1 changed files with 1 additions and 5 deletions
|
@ -728,7 +728,7 @@ void SV_GenerateQTVStub(cluster_t *cluster, oproxy_t *dest, char *streamtype, ch
|
|||
return;
|
||||
}
|
||||
|
||||
SV_SendHTTPHeader(cluster, dest, "200", "text/x-quaketvident", true);
|
||||
SV_SendHTTPHeader(cluster, dest, "200", "text/x-quaketvident", false);
|
||||
|
||||
{
|
||||
char *ws;
|
||||
|
@ -1082,10 +1082,6 @@ qboolean SV_ReadPendingProxy(cluster_t *cluster, oproxy_t *pend)
|
|||
{
|
||||
SV_GenerateQTVStub(cluster, pend, "file:", pend->inbuffer+20);
|
||||
}
|
||||
else if (!strncmp(pend->inbuffer+4, "/demo/", 6))
|
||||
{
|
||||
SV_GenerateQTVStub(cluster, pend, "file:", pend->inbuffer+9);
|
||||
}
|
||||
else if (!strncmp(pend->inbuffer+4, "/about", 6))
|
||||
{ //redirect them to our funky website
|
||||
s = "HTTP/1.0 302 Found\n"
|
||||
|
|
Loading…
Reference in a new issue