Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libloc
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
libloc
Commits
a293f829
Commit
a293f829
authored
Oct 13, 2019
by
Michael Tremer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add flags for A1, A2 and A3
Signed-off-by:
Michael Tremer
<
michael.tremer@ipfire.org
>
parent
a99e7c2b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
src/loc/network.h
src/loc/network.h
+6
-0
src/network.c
src/network.c
+1
-1
No files found.
src/loc/network.h
View file @
a293f829
...
...
@@ -22,6 +22,12 @@
#include <loc/libloc.h>
#include <loc/format.h>
enum
loc_network_flags
{
LOC_NETWORK_FLAG_ANONYMOUS_PROXY
=
(
1
<<
0
),
// A1
LOC_NETWORK_FLAG_SATELLITE_PROVIDER
=
(
1
<<
1
),
// A2
LOC_NETWORK_FLAG_ANYCAST
=
(
1
<<
2
),
// A3
};
struct
loc_network
;
int
loc_network_new
(
struct
loc_ctx
*
ctx
,
struct
loc_network
**
network
,
struct
in6_addr
*
start_address
,
unsigned
int
prefix
);
...
...
src/network.c
View file @
a293f829
...
...
@@ -35,7 +35,7 @@ struct loc_network {
char
country_code
[
3
];
uint32_t
asn
;
uint32_t
flags
;
enum
loc_network_flags
flags
;
};
static
int
valid_prefix
(
struct
in6_addr
*
address
,
unsigned
int
prefix
)
{
...
...
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