Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libvdp-pesi
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
uplex-varnish
libvdp-pesi
Commits
885a66ee
Commit
885a66ee
authored
Aug 01, 2019
by
Nils Goroll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove more debug sections
parent
29494a1d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
vdp_pesi.c
src/vdp_pesi.c
+4
-0
No files found.
src/vdp_pesi.c
View file @
885a66ee
...
...
@@ -2082,6 +2082,7 @@ push_vdps(struct req *req, struct nexus_gzip *gz)
CHECK_OBJ_NOTNULL
(
req
->
objcore
,
OBJCORE_MAGIC
);
CHECK_OBJ_NOTNULL
(
req
->
wrk
,
WORKER_MAGIC
);
#ifdef DEBUG
/* XXX 5-28 */
struct
vdp_entry
*
vdpe
;
CHECK_OBJ_NOTNULL
(
req
->
vdc
,
VDP_CTX_MAGIC
);
...
...
@@ -2091,6 +2092,7 @@ push_vdps(struct req *req, struct nexus_gzip *gz)
"push_vdps: VDP list before pushing parent VDPs: %s"
,
vdpe
->
vdp
->
name
);
}
#endif
i
=
ObjCheckFlag
(
req
->
wrk
,
req
->
objcore
,
OF_GZIPED
);
if
(
gz
->
is
&&
i
&&
!
(
req
->
res_mode
&
RES_ESI
))
{
...
...
@@ -2113,12 +2115,14 @@ push_vdps(struct req *req, struct nexus_gzip *gz)
}
// else just push to parent
#ifdef DEBUG
/* XXX debugging */
CHECK_OBJ_NOTNULL
(
req
->
vdc
,
VDP_CTX_MAGIC
);
VTAILQ_FOREACH
(
vdpe
,
&
req
->
vdc
->
vdp
,
list
)
{
CHECK_OBJ_NOTNULL
(
vdpe
,
VDP_ENTRY_MAGIC
);
VSLdbgv
(
req
,
"push_vdps: VDP list: %s"
,
vdpe
->
vdp
->
name
);
}
#endif
return
(
0
);
}
...
...
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