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
8a23f465
Unverified
Commit
8a23f465
authored
Feb 18, 2025
by
Nils Goroll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Constify
parent
d31b1ff1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
cache_req.c
bin/varnishd/cache/cache_req.c
+1
-1
cache_varnishd.h
bin/varnishd/cache/cache_varnishd.h
+1
-1
No files found.
bin/varnishd/cache/cache_req.c
View file @
8a23f465
...
...
@@ -123,7 +123,7 @@ Req_LogStart(const struct worker *wrk, struct req *req)
*/
struct
req
*
Req_New
(
struct
sess
*
sp
,
struct
req
*
preq
)
Req_New
(
struct
sess
*
sp
,
const
struct
req
*
preq
)
{
struct
pool
*
pp
;
struct
req
*
req
;
...
...
bin/varnishd/cache/cache_varnishd.h
View file @
8a23f465
...
...
@@ -411,7 +411,7 @@ void pan_pool(struct vsb *);
int
VRG_CheckBo
(
struct
busyobj
*
);
/* cache_req.c */
struct
req
*
Req_New
(
struct
sess
*
,
struct
req
*
);
struct
req
*
Req_New
(
struct
sess
*
,
const
struct
req
*
);
void
Req_Release
(
struct
req
*
);
void
Req_Rollback
(
VRT_CTX
);
void
Req_Cleanup
(
struct
sess
*
sp
,
struct
worker
*
wrk
,
struct
req
*
req
);
...
...
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