Commit 6b4267b4 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

White space polish

parent b7a9b035
...@@ -311,7 +311,7 @@ VSC_F(sess_dropped, uint64_t, 0, 'c', info, ...@@ -311,7 +311,7 @@ VSC_F(sess_dropped, uint64_t, 0, 'c', info,
VSC_F(n_object, uint64_t, 1, 'i', info, VSC_F(n_object, uint64_t, 1, 'i', info,
"object structs made", "object structs made",
"Number of object structs made" "Number of object structs made"
) )
VSC_F(n_vampireobject, uint64_t, 1, 'i', diag, VSC_F(n_vampireobject, uint64_t, 1, 'i', diag,
"unresurrected objects", "unresurrected objects",
...@@ -319,15 +319,15 @@ VSC_F(n_vampireobject, uint64_t, 1, 'i', diag, ...@@ -319,15 +319,15 @@ VSC_F(n_vampireobject, uint64_t, 1, 'i', diag,
) )
VSC_F(n_objectcore, uint64_t, 1, 'i', info, VSC_F(n_objectcore, uint64_t, 1, 'i', info,
"objectcore structs made", "objectcore structs made",
"Number of objectcore structs made" "Number of objectcore structs made"
) )
VSC_F(n_objecthead, uint64_t, 1, 'i', info, VSC_F(n_objecthead, uint64_t, 1, 'i', info,
"objecthead structs made", "objecthead structs made",
"Number of objecthead structs made" "Number of objecthead structs made"
) )
VSC_F(n_waitinglist, uint64_t, 1, 'i', debug, VSC_F(n_waitinglist, uint64_t, 1, 'i', debug,
"waitinglist structs made", "waitinglist structs made",
"Number of waitinglist structs made" "Number of waitinglist structs made"
) )
VSC_F(n_backend, uint64_t, 0, 'i', info, VSC_F(n_backend, uint64_t, 0, 'i', info,
...@@ -347,7 +347,7 @@ VSC_F(n_lru_nuked, uint64_t, 0, 'i', info, ...@@ -347,7 +347,7 @@ VSC_F(n_lru_nuked, uint64_t, 0, 'i', info,
) )
VSC_F(n_lru_moved, uint64_t, 0, 'i', diag, VSC_F(n_lru_moved, uint64_t, 0, 'i', diag,
"Number of LRU moved objects", "Number of LRU moved objects",
"Number of move operations done on the LRU list." "Number of move operations done on the LRU list."
) )
VSC_F(losthdr, uint64_t, 0, 'a', info, VSC_F(losthdr, uint64_t, 0, 'a', info,
......
...@@ -564,9 +564,9 @@ sp_variables = [ ...@@ -564,9 +564,9 @@ sp_variables = [
'INT', 'INT',
( 'hit', 'deliver',), ( 'hit', 'deliver',),
( ), """ ( ), """
The count of cache-hits on this object. A value of 0 indicates a The count of cache-hits on this object. A value of 0 indicates a
cache miss. cache miss.
""" """
), ),
('obj.http.', ('obj.http.',
'HEADER', 'HEADER',
......
...@@ -126,7 +126,7 @@ Description ...@@ -126,7 +126,7 @@ Description
*fallback* will be returned. *fallback* will be returned.
Example Example
| if (std.integer(beresp.http.x-foo, 0) > 5) { | if (std.integer(beresp.http.x-foo, 0) > 5) {
| ... | ...
| } | }
$Function IP ip(STRING s, IP fallback) $Function IP ip(STRING s, IP fallback)
...@@ -137,7 +137,7 @@ Description ...@@ -137,7 +137,7 @@ Description
fails, *fallback* will be returned. fails, *fallback* will be returned.
Example Example
| if (std.ip(req.http.X-forwarded-for, "0.0.0.0") ~ my_acl) { | if (std.ip(req.http.X-forwarded-for, "0.0.0.0") ~ my_acl) {
| ... | ...
| } | }
$Function REAL real(STRING s, REAL fallback) $Function REAL real(STRING s, REAL fallback)
...@@ -224,7 +224,7 @@ Description ...@@ -224,7 +224,7 @@ Description
Note that the comparison is case sensitive. Note that the comparison is case sensitive.
Example Example
| if (std.strstr(req.url, req.http.x-restrict)) { | if (std.strstr(req.url, req.http.x-restrict)) {
| ... | ...
| } | }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment