Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libvmod-re
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-re
Commits
a41954fe
Unverified
Commit
a41954fe
authored
Jan 31, 2025
by
Nils Goroll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gc legacy compatibility code
parent
e81b5600
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
20 deletions
+0
-20
vmod_re.c
src/vmod_re.c
+0
-20
No files found.
src/vmod_re.c
View file @
a41954fe
...
...
@@ -44,21 +44,6 @@
#include "vcc_if.h"
#include "rvb.h"
// compat with pre 7.3 - XXX REMOVEME
#ifndef WS_TASK_ALLOC_OBJ
#define WS_TASK_ALLOC_OBJ(ctx, ptr, magic) do { \
ptr = WS_Alloc((ctx)->ws, sizeof *(ptr)); \
if ((ptr) == NULL) \
VRT_fail(ctx, "Out of workspace for " #magic); \
else \
INIT_OBJ(ptr, magic); \
} while(0)
#endif
#if !HAVE_PCRE2_SET_DEPTH_LIMIT
# define pcre2_set_depth_limit(r, d) pcre2_set_recursion_limit(r, d)
#endif
#define MAX_MATCHES 11
#define MAX_OV ((MAX_MATCHES) * 2)
...
...
@@ -99,11 +84,6 @@ static vdp_init_f re_vdp_init;
static
vdp_bytes_f
re_vdp_bytes
;
static
vdp_fini_f
re_vdp_fini
;
// varnish-cache pre 7f28888779fd14f99eb34e50f6fb07ea6bbff999
#ifndef NO_VXID
#define NO_VXID (0U)
#endif
static
void
errmsg
(
VRT_CTX
,
const
char
*
fmt
,
...)
{
...
...
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