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
0efc4870
Commit
0efc4870
authored
Apr 13, 2015
by
Matthieu Boutier
Committed by
Juliusz Chroboczek
Apr 13, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove useless function.
Was used in the first version of the disambiguation.c algorithm.
parent
ae6a8f50
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
70 deletions
+0
-70
route.c
route.c
+0
-66
route.h
route.h
+0
-4
No files found.
route.c
View file @
0efc4870
...
...
@@ -390,72 +390,6 @@ route_stream_done(struct route_stream *stream)
free
(
stream
);
}
/* Search the minimum route covering (dst, src), such that either the exact
destination or source is given. If exclusive_min is true, (dst, src) is
excluded from the search. */
struct
babel_route
*
find_min_iroute
(
const
unsigned
char
*
dst_prefix
,
unsigned
char
dst_plen
,
const
unsigned
char
*
src_prefix
,
unsigned
char
src_plen
,
int
is_fixed_dst
,
int
exclusive_min
)
{
enum
prefix_status
st
;
struct
babel_route
*
result
=
NULL
;
int
i
;
if
(
is_fixed_dst
)
{
for
(
i
=
0
;
i
<
route_slots
;
i
++
)
{
if
(
!
routes
[
i
]
->
installed
)
continue
;
st
=
prefix_cmp
(
dst_prefix
,
dst_plen
,
routes
[
i
]
->
src
->
prefix
,
routes
[
i
]
->
src
->
plen
);
if
(
st
!=
PST_EQUALS
)
continue
;
st
=
prefix_cmp
(
src_prefix
,
src_plen
,
routes
[
i
]
->
src
->
src_prefix
,
routes
[
i
]
->
src
->
src_plen
);
if
(
!
(
st
&
(
exclusive_min
?
PST_MORE_SPECIFIC
:
PST_MORE_SPECIFIC
|
PST_EQUALS
)))
continue
;
if
(
result
&&
(
prefix_cmp
(
result
->
src
->
src_prefix
,
result
->
src
->
src_plen
,
routes
[
i
]
->
src
->
src_prefix
,
routes
[
i
]
->
src
->
src_plen
)
==
PST_MORE_SPECIFIC
))
continue
;
result
=
routes
[
i
];
}
}
else
{
for
(
i
=
0
;
i
<
route_slots
;
i
++
)
{
if
(
!
routes
[
i
]
->
installed
)
continue
;
st
=
prefix_cmp
(
src_prefix
,
src_plen
,
routes
[
i
]
->
src
->
src_prefix
,
routes
[
i
]
->
src
->
src_plen
);
if
(
st
!=
PST_EQUALS
)
continue
;
st
=
prefix_cmp
(
dst_prefix
,
dst_plen
,
routes
[
i
]
->
src
->
prefix
,
routes
[
i
]
->
src
->
plen
);
if
(
!
(
st
&
(
exclusive_min
?
PST_MORE_SPECIFIC
:
PST_MORE_SPECIFIC
|
PST_EQUALS
)))
continue
;
if
(
result
&&
(
prefix_cmp
(
result
->
src
->
prefix
,
result
->
src
->
plen
,
routes
[
i
]
->
src
->
prefix
,
routes
[
i
]
->
src
->
plen
)
==
PST_MORE_SPECIFIC
))
continue
;
result
=
routes
[
i
];
}
}
if
(
result
)
assert
(
v4mapped
(
dst_prefix
)
==
v4mapped
(
result
->
src
->
prefix
));
return
result
;
}
int
metric_to_kernel
(
int
metric
)
{
...
...
route.h
View file @
0efc4870
...
...
@@ -75,10 +75,6 @@ struct babel_route *find_route(const unsigned char *prefix, unsigned char plen,
struct
babel_route
*
find_installed_route
(
const
unsigned
char
*
prefix
,
unsigned
char
plen
,
const
unsigned
char
*
src_prefix
,
unsigned
char
src_plen
);
struct
babel_route
*
find_min_iroute
(
const
unsigned
char
*
dst_prefix
,
unsigned
char
dst_plen
,
const
unsigned
char
*
src_prefix
,
unsigned
char
src_plen
,
int
is_fixed_dst
,
int
exclusive_min
);
int
installed_routes_estimate
(
void
);
void
flush_route
(
struct
babel_route
*
route
);
void
flush_all_routes
(
void
);
...
...
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