Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
babeld
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
babeld
Commits
19a442ba
Commit
19a442ba
authored
Dec 22, 2018
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove class E from martian_filter.
Thanks to Dave Taht.
parent
a3c6e407
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
util.c
util.c
+3
-1
No files found.
util.c
View file @
19a442ba
...
...
@@ -439,6 +439,7 @@ wait_for_fd(int direction, int fd, int msecs)
int
martian_prefix
(
const
unsigned
char
*
prefix
,
int
plen
)
{
static
const
unsigned
char
ones
[
4
]
=
{
0xFF
,
0xFF
,
0xFF
,
0xFF
};
return
(
plen
>=
8
&&
prefix
[
0
]
==
0xFF
)
||
(
plen
>=
10
&&
prefix
[
0
]
==
0xFE
&&
(
prefix
[
1
]
&
0xC0
)
==
0x80
)
||
...
...
@@ -446,7 +447,8 @@ martian_prefix(const unsigned char *prefix, int plen)
(
prefix
[
15
]
==
0
||
prefix
[
15
]
==
1
))
||
(
plen
>=
96
&&
v4mapped
(
prefix
)
&&
((
plen
>=
104
&&
(
prefix
[
12
]
==
127
||
prefix
[
12
]
==
0
))
||
(
plen
>=
100
&&
(
prefix
[
12
]
&
0xE0
)
==
0xE0
)));
(
plen
>=
100
&&
(
prefix
[
12
]
&
0xF0
)
==
0xE0
)
||
(
plen
>=
128
&&
memcmp
(
prefix
+
12
,
ones
,
4
)
==
0
)));
}
int
...
...
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