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
c0e2accf
Commit
c0e2accf
authored
Aug 31, 2011
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
When headers are surplus to limits, only log the first 20 char.
parent
16d58afe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
cache_http.c
bin/varnishd/cache_http.c
+4
-2
No files found.
bin/varnishd/cache_http.c
View file @
c0e2accf
...
...
@@ -522,7 +522,8 @@ http_dissect_hdrs(struct worker *w, struct http *hp, int fd, char *p,
if
(
q
-
p
>
htc
->
maxhdr
)
{
VSC_C_main
->
losthdr
++
;
WSL
(
w
,
SLT_LostHeader
,
fd
,
"%.*s"
,
q
-
p
,
p
);
WSL
(
w
,
SLT_LostHeader
,
fd
,
"%.*s"
,
q
-
p
>
20
?
20
:
q
-
p
,
p
);
return
(
413
);
}
...
...
@@ -547,7 +548,8 @@ http_dissect_hdrs(struct worker *w, struct http *hp, int fd, char *p,
hp
->
nhd
++
;
}
else
{
VSC_C_main
->
losthdr
++
;
WSL
(
w
,
SLT_LostHeader
,
fd
,
"%.*s"
,
q
-
p
,
p
);
WSL
(
w
,
SLT_LostHeader
,
fd
,
"%.*s"
,
q
-
p
>
20
?
20
:
q
-
p
,
p
);
return
(
413
);
}
}
...
...
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