Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nginx-push-stream-module
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
nginx-push-stream-module
Commits
63242edc
Commit
63242edc
authored
Feb 14, 2012
by
Wandenberg Peixoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding function ngx_http_push_stream_unescape_uri
parent
74ee07ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
ngx_http_push_stream_module_utils.h
include/ngx_http_push_stream_module_utils.h
+1
-0
ngx_http_push_stream_module_utils.c
src/ngx_http_push_stream_module_utils.c
+8
-1
No files found.
include/ngx_http_push_stream_module_utils.h
View file @
63242edc
...
...
@@ -240,6 +240,7 @@ static ngx_int_t ngx_http_push_stream_memory_cleanup();
static
ngx_int_t
ngx_http_push_stream_buffer_cleanup
();
ngx_chain_t
*
ngx_http_push_stream_get_buf
(
ngx_http_request_t
*
r
);
static
void
ngx_http_push_stream_unescape_uri
(
ngx_str_t
*
value
);
static
void
ngx_http_push_stream_complex_value
(
ngx_http_request_t
*
r
,
ngx_http_complex_value_t
*
val
,
ngx_str_t
*
value
);
...
...
src/ngx_http_push_stream_module_utils.c
View file @
63242edc
...
...
@@ -1706,10 +1706,17 @@ ngx_http_push_stream_parse_paddings(ngx_conf_t *cf, ngx_str_t *paddings_by_user
static
void
ngx_http_push_stream_complex_value
(
ngx_http_request_t
*
r
,
ngx_http_complex_value_t
*
val
,
ngx_str_t
*
value
)
{
ngx_http_complex_value
(
r
,
val
,
value
);
ngx_http_push_stream_unescape_uri
(
value
);
}
static
void
ngx_http_push_stream_unescape_uri
(
ngx_str_t
*
value
)
{
u_char
*
dst
,
*
src
;
ngx_http_complex_value
(
r
,
val
,
value
);
if
(
value
->
len
)
{
dst
=
value
->
data
;
src
=
value
->
data
;
...
...
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