Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libvmod-re2
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
libvmod-re2
Commits
7a48f0ee
Unverified
Commit
7a48f0ee
authored
Nov 09, 2022
by
Nils Goroll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update copied-in code to reflect VXID changes
parent
7e00c133
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
set.c
src/set.c
+10
-10
No files found.
src/set.c
View file @
7a48f0ee
...
...
@@ -887,16 +887,16 @@ vmod_set_saved(VRT_CTX, struct vmod_re2_set *set, VCL_ENUM whichs, VCL_INT n,
static
void
http_VSLH_del
(
const
struct
http
*
hp
,
unsigned
hdr
)
{
int
i
;
if
(
hp
->
vsl
!=
NULL
)
{
/* We don't support unsetting stuff in the first line */
assert
(
hdr
>=
HTTP_HDR_FIRST
);
AN
(
hp
->
vsl
->
wid
&
(
VSL_CLIENTMARKER
|
VSL_BACKENDMARKER
));
i
=
(
HTTP_HDR_UNSET
-
HTTP_HDR_METHOD
);
i
+=
hp
->
logtag
;
VSLbt
(
hp
->
vsl
,
(
enum
VSL_tag_e
)
i
,
hp
->
hd
[
hdr
]);
}
int
i
;
if
(
hp
->
vsl
!=
NULL
)
{
/* We don't support unsetting stuff in the first line */
assert
(
hdr
>=
HTTP_HDR_FIRST
);
assert
(
VXID_TAG
(
hp
->
vsl
->
wid
));
i
=
(
HTTP_HDR_UNSET
-
HTTP_HDR_METHOD
);
i
+=
hp
->
logtag
;
VSLbt
(
hp
->
vsl
,
(
enum
VSL_tag_e
)
i
,
hp
->
hd
[
hdr
]);
}
}
VCL_VOID
...
...
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