Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
556951d2
Commit
556951d2
authored
Jan 19, 2017
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tell it if we timed out the testcase and killed the child.
Fail out of http reception if the socket fails
parent
79889bc2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
vtc_http.c
bin/varnishtest/vtc_http.c
+5
-2
No files found.
bin/varnishtest/vtc_http.c
View file @
556951d2
...
...
@@ -625,7 +625,7 @@ http_swallow_body(struct http *hp, char * const *hh, int body)
ll
=
0
;
p
=
http_find_header
(
hh
,
"transfer-encoding"
);
if
(
p
!=
NULL
&&
!
strcasecmp
(
p
,
"chunked"
))
{
while
(
http_rxchunk
(
hp
)
!=
0
)
while
(
http_rxchunk
(
hp
)
>
0
)
continue
;
vtc_dump
(
hp
->
vl
,
4
,
"body"
,
hp
->
body
,
ll
);
ll
=
hp
->
rxbuf
+
hp
->
prxbuf
-
hp
->
body
;
...
...
@@ -636,7 +636,8 @@ http_swallow_body(struct http *hp, char * const *hh, int body)
p
=
http_find_header
(
hh
,
"content-length"
);
if
(
p
!=
NULL
)
{
l
=
strtoul
(
p
,
NULL
,
10
);
(
void
)
http_rxchar
(
hp
,
l
,
0
);
if
(
http_rxchar
(
hp
,
l
,
0
)
<
0
)
return
;
vtc_dump
(
hp
->
vl
,
4
,
"body"
,
hp
->
body
,
l
);
hp
->
bodyl
=
l
;
bprintf
(
hp
->
bodylen
,
"%d"
,
l
);
...
...
@@ -645,6 +646,8 @@ http_swallow_body(struct http *hp, char * const *hh, int body)
if
(
body
)
{
do
{
i
=
http_rxchar
(
hp
,
1
,
1
);
if
(
i
<
0
)
return
;
ll
+=
i
;
}
while
(
i
>
0
);
vtc_dump
(
hp
->
vl
,
4
,
"rxeof"
,
hp
->
body
,
ll
);
...
...
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