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
0a1cabfe
Commit
0a1cabfe
authored
May 07, 2018
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A little bit of flexelintery
parent
a98d2b55
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
flint.lnt
bin/varnishtest/flint.lnt
+2
-0
vtc_h2_hpack.c
bin/varnishtest/vtc_h2_hpack.c
+1
-1
vtc_process.c
bin/varnishtest/vtc_process.c
+1
-1
vtc_server.c
bin/varnishtest/vtc_server.c
+1
-1
No files found.
bin/varnishtest/flint.lnt
View file @
0a1cabfe
...
...
@@ -10,6 +10,8 @@
-emacro({779}, ENC) // String constant in comparison operator '!='
-emacro({506}, CHKFRAME) // Constant value Boolean
-sem(http_process_cleanup, custodial(1))
-esym(522, teken_subr_*)
-esym(850, av)
...
...
bin/varnishtest/vtc_h2_hpack.c
View file @
0a1cabfe
...
...
@@ -259,7 +259,7 @@ str_decode(struct hpk_iter *iter, struct txt *t)
if
(
num
>
iter
->
end
-
iter
->
buf
)
return
(
hpk_err
);
if
(
huff
)
{
/*Huffman encoding */
t
->
ptr
=
malloc
((
num
*
8
)
/
5L
+
1L
);
t
->
ptr
=
malloc
((
num
*
8
L
)
/
5L
+
1L
);
AN
(
t
->
ptr
);
num
=
huff_decode
(
t
->
ptr
,
(
num
*
8
)
/
5
,
iter
,
num
);
if
(
!
num
)
{
...
...
bin/varnishtest/vtc_process.c
View file @
0a1cabfe
...
...
@@ -320,7 +320,7 @@ term_expect_text(struct process *pp,
}
static
void
term_expect_cursor
(
struct
process
*
pp
,
const
char
*
lin
,
const
char
*
col
)
term_expect_cursor
(
const
struct
process
*
pp
,
const
char
*
lin
,
const
char
*
col
)
{
int
x
,
y
;
const
teken_pos_t
*
pos
;
...
...
bin/varnishtest/vtc_server.c
View file @
0a1cabfe
...
...
@@ -327,7 +327,7 @@ server_dispatch_thread(void *priv)
vtc_log
(
vl
,
2
,
"Dispatch started on %s"
,
s
->
listen
);
while
(
1
)
{
while
(
!
vtc_stop
)
{
addr
=
(
void
*
)
&
addr_s
;
l
=
sizeof
addr_s
;
fd
=
accept
(
s
->
sock
,
addr
,
&
l
);
...
...
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