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
a99e3f94
Commit
a99e3f94
authored
May 10, 2021
by
Dridi Boukelmoune
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style: Whitespace OCD
parent
90623cc5
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
37 additions
and
33 deletions
+37
-33
vcc_symb.c
lib/libvcc/vcc_symb.c
+18
-14
vmod_cookie.c
vmod/vmod_cookie.c
+3
-3
vmod_debug.c
vmod/vmod_debug.c
+10
-10
vmod_directors_shard_cfg.c
vmod/vmod_directors_shard_cfg.c
+3
-3
vmod_std_fileread.c
vmod/vmod_std_fileread.c
+3
-3
No files found.
lib/libvcc/vcc_symb.c
View file @
a99e3f94
...
...
@@ -236,24 +236,28 @@ const struct symxref XREF_DEF[1] = {{"xref_def"}};
const
struct
symxref
XREF_REF
[
1
]
=
{{
"xref_ref"
}};
const
struct
symmode
SYMTAB_NOERR
[
1
]
=
{{
.
name
=
"sym_noerror"
,
.
noerr
=
1
}};
.
name
=
"sym_noerror"
,
.
noerr
=
1
}};
const
struct
symmode
SYMTAB_CREATE
[
1
]
=
{{
.
name
=
"sym_create"
}};
.
name
=
"sym_create"
}};
const
struct
symmode
SYMTAB_EXISTING
[
1
]
=
{{
.
name
=
"Symbol not found"
}};
.
name
=
"Symbol not found"
}};
const
struct
symmode
SYMTAB_PARTIAL
[
1
]
=
{{
.
name
=
"Symbol not found"
,
.
partial
=
1
}};
.
name
=
"Symbol not found"
,
.
partial
=
1
}};
const
struct
symmode
SYMTAB_PARTIAL_NOERR
[
1
]
=
{{
.
name
=
"Symbol not found"
,
.
partial
=
1
,
.
noerr
=
1
}};
.
name
=
"Symbol not found"
,
.
partial
=
1
,
.
noerr
=
1
}};
struct
symbol
*
VCC_SymbolGet
(
struct
vcc
*
tl
,
vcc_ns_t
ns
,
vcc_kind_t
kind
,
...
...
vmod/vmod_cookie.c
View file @
a99e3f94
...
...
@@ -81,9 +81,9 @@ cobj_free(VRT_CTX, void *p)
}
static
const
struct
vmod_priv_methods
cookie_cobj_priv_methods
[
1
]
=
{{
.
magic
=
VMOD_PRIV_METHODS_MAGIC
,
.
type
=
"vmod_cookie_cobj"
,
.
fini
=
cobj_free
.
magic
=
VMOD_PRIV_METHODS_MAGIC
,
.
type
=
"vmod_cookie_cobj"
,
.
fini
=
cobj_free
}};
static
struct
vmod_cookie
*
...
...
vmod/vmod_debug.c
View file @
a99e3f94
...
...
@@ -242,10 +242,10 @@ priv_ ## name ## _fini(VRT_CTX, void *ptr) \
\
static const struct vmod_priv_methods \
xyzzy_test_priv_ ## name ## _methods[1] = {{ \
.magic = VMOD_PRIV_METHODS_MAGIC,
\
.type = "debug_test_priv_" #name,
\
.fini = priv_ ## name ## _fini
\
}};
.magic = VMOD_PRIV_METHODS_MAGIC,
\
.type = "debug_test_priv_" #name,
\
.fini = priv_ ## name ## _fini
\
}};
PRIV_FINI
(
call
,
0
)
PRIV_FINI
(
task
,
1
)
PRIV_FINI
(
top
,
1
)
...
...
@@ -426,9 +426,9 @@ priv_vcl_fini(VRT_CTX, void *priv)
}
static
const
struct
vmod_priv_methods
priv_vcl_methods
[
1
]
=
{{
.
magic
=
VMOD_PRIV_METHODS_MAGIC
,
.
type
=
"debug_priv_vcl_fini"
,
.
fini
=
priv_vcl_fini
.
magic
=
VMOD_PRIV_METHODS_MAGIC
,
.
type
=
"debug_priv_vcl_fini"
,
.
fini
=
priv_vcl_fini
}};
static
int
...
...
@@ -1201,9 +1201,9 @@ fail_f(VRT_CTX, void *priv)
}
static
const
struct
vmod_priv_methods
xyzzy_fail_task_fini_methods
[
1
]
=
{{
.
magic
=
VMOD_PRIV_METHODS_MAGIC
,
.
type
=
"debug_fail_task_fini"
,
.
fini
=
fail_f
.
magic
=
VMOD_PRIV_METHODS_MAGIC
,
.
type
=
"debug_fail_task_fini"
,
.
fini
=
fail_f
}};
VCL_VOID
v_matchproto_
(
td_xyzzy_debug_fail_task_fini
)
...
...
vmod/vmod_directors_shard_cfg.c
View file @
a99e3f94
...
...
@@ -100,9 +100,9 @@ shard_change_fini(VRT_CTX, void * priv)
}
static
const
struct
vmod_priv_methods
shard_change_priv_methods
[
1
]
=
{{
.
magic
=
VMOD_PRIV_METHODS_MAGIC
,
.
type
=
"vmod_directors_shard_cfg"
,
.
fini
=
shard_change_fini
.
magic
=
VMOD_PRIV_METHODS_MAGIC
,
.
type
=
"vmod_directors_shard_cfg"
,
.
fini
=
shard_change_fini
}};
static
struct
shard_change
*
...
...
vmod/vmod_std_fileread.c
View file @
a99e3f94
...
...
@@ -85,9 +85,9 @@ fini_frfile(VRT_CTX, void *ptr)
}
static
const
struct
vmod_priv_methods
frfile_methods
[
1
]
=
{{
.
magic
=
VMOD_PRIV_METHODS_MAGIC
,
.
type
=
"vmod_std_fileread"
,
.
fini
=
fini_frfile
.
magic
=
VMOD_PRIV_METHODS_MAGIC
,
.
type
=
"vmod_std_fileread"
,
.
fini
=
fini_frfile
}};
static
struct
frfile
*
...
...
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