Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
ee042a34
Commit
ee042a34
authored
Oct 16, 2015
by
Deomid Ryabkov
Committed by
rojer
Oct 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix SSI parsing
PUBLISHED_FROM=c918da948354def5815dfd6b832053f170212c6f
parent
63075f68
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
mongoose.c
mongoose.c
+7
-7
No files found.
mongoose.c
View file @
ee042a34
...
...
@@ -4309,6 +4309,13 @@ static void send_ssi_file(struct mg_connection *nc, const char *path, FILE *fp,
/* Silently ignore unknown SSI directive. */
}
len
=
0
;
}
else
if
(
ch
==
'<'
)
{
in_ssi_tag
=
1
;
if
(
len
>
0
)
{
mg_send
(
nc
,
buf
,
(
size_t
)
len
);
}
len
=
0
;
buf
[
len
++
]
=
ch
&
0xff
;
}
else
if
(
in_ssi_tag
)
{
if
(
len
==
(
int
)
btag
.
len
&&
memcmp
(
buf
,
btag
.
p
,
btag
.
len
)
!=
0
)
{
/* Not an SSI tag */
...
...
@@ -4318,13 +4325,6 @@ static void send_ssi_file(struct mg_connection *nc, const char *path, FILE *fp,
len
=
0
;
}
buf
[
len
++
]
=
ch
&
0xff
;
}
else
if
(
ch
==
'<'
)
{
in_ssi_tag
=
1
;
if
(
len
>
0
)
{
mg_send
(
nc
,
buf
,
(
size_t
)
len
);
}
len
=
0
;
buf
[
len
++
]
=
ch
&
0xff
;
}
else
{
buf
[
len
++
]
=
ch
&
0xff
;
if
(
len
==
(
int
)
sizeof
(
buf
))
{
...
...
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