Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
a4de52f8
Commit
a4de52f8
authored
Jul 10, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Faster code
parent
3de41d49
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
10 deletions
+16
-10
src/misc/httpd.c
src/misc/httpd.c
+16
-10
No files found.
src/misc/httpd.c
View file @
a4de52f8
...
...
@@ -565,16 +565,22 @@ static int httpd_RedirectCallBack( httpd_callback_sys_t *p_sys,
answer
->
psz_status
=
strdup
(
"Moved Permanently"
);
p
=
answer
->
p_body
=
malloc
(
1000
+
strlen
(
rdir
->
psz_dst
)
);
p
+=
sprintf
(
p
,
"<html>
\n
"
);
p
+=
sprintf
(
p
,
"<head>
\n
"
);
p
+=
sprintf
(
p
,
"<title>Redirection</title>
\n
"
);
p
+=
sprintf
(
p
,
"</head>
\n
"
);
p
+=
sprintf
(
p
,
"<body>
\n
"
);
p
+=
sprintf
(
p
,
"<h1><center>You should be <a href=
\"
%s
\"
>redirected</a></center></h1>
\n
"
,
rdir
->
psz_dst
);
p
+=
sprintf
(
p
,
"<hr />
\n
"
);
p
+=
sprintf
(
p
,
"<a href=
\"
http://www.videolan.org
\"
>VideoLAN</a>
\n
"
);
p
+=
sprintf
(
p
,
"</body>
\n
"
);
p
+=
sprintf
(
p
,
"</html>
\n
"
);
p
+=
sprintf
(
(
char
*
)
p
,
"<?xml version=
\"
1.0
\"
encoding=
\"
UTF-8
\"
?>
\n
"
"<!DOCTYPE html PUBLIC
\"
-//W3C//DTD XHTML 1.0 Strict//EN
\"
"
"
\"
http://www.w3.org/TR/xhtml10/DTD/xhtml10transitional.dtd
\"
>
\n
"
"<html>
\n
"
"<head>
\n
"
"<title>Redirection</title>
\n
"
"</head>
\n
"
"<body>
\n
"
"<h1>You should be "
"<a href=
\"
%s
\"
>redirected</a></h1>
\n
"
"<hr />
\n
"
"<p><a href=
\"
http://www.videolan.org
\"
>VideoLAN</a>
\n
</p>"
"<hr />
\n
"
"</body>
\n
"
"</html>
\n
"
,
rdir
->
psz_dst
);
answer
->
i_body
=
p
-
answer
->
p_body
;
/* XXX check if it's ok or we need to set an absolute url */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment