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
5bf9d524
Commit
5bf9d524
authored
Jul 28, 2014
by
Matthieu Boutier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Limit find_min_iroute function to used cases.
parent
c12137a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
41 deletions
+8
-41
route.c
route.c
+7
-40
route.h
route.h
+1
-1
No files found.
route.c
View file @
5bf9d524
...
...
@@ -389,27 +389,19 @@ route_stream_done(struct route_stream *stream)
free
(
stream
);
}
/* Search for a route having dst_prefix/dst_len as destination prefix and
src_prefix/src_plen as source prefix. However, if is_min_dst is specified,
the route returns has just as constraint to contains the given destination
prefix. As multiple routes can matched this one, the minimum among the
possibles routes is returned. If exclusive_min is specified, it will be
requier for the destination to be different than the one in argument. The
same behaviour holds for the source prefix with is_min_src. */
/* 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_
min_dst
,
int
is_min_src
,
int
exclusive_min
)
int
is_
fixed_dst
,
int
exclusive_min
)
{
enum
prefix_status
st
;
struct
babel_route
*
result
=
NULL
;
int
i
;
if
(
!
is_min_dst
&&
!
is_min_src
)
{
i
=
find_route_slot
(
dst_prefix
,
dst_plen
,
src_prefix
,
src_plen
,
NULL
);
result
=
(
i
<
0
||
!
routes
[
i
]
->
installed
)
?
NULL
:
routes
[
i
];
}
else
if
(
is_min_src
)
{
/* only dst is exactly specified */
if
(
is_fixed_dst
)
{
for
(
i
=
0
;
i
<
route_slots
;
i
++
)
{
if
(
!
routes
[
i
]
->
installed
)
continue
;
...
...
@@ -434,7 +426,7 @@ find_min_iroute(const unsigned char *dst_prefix, unsigned char dst_plen,
result
=
routes
[
i
];
}
}
else
if
(
is_min_dst
)
{
/* only src is exactly specified */
}
else
{
for
(
i
=
0
;
i
<
route_slots
;
i
++
)
{
if
(
!
routes
[
i
]
->
installed
)
continue
;
...
...
@@ -458,33 +450,8 @@ find_min_iroute(const unsigned char *dst_prefix, unsigned char dst_plen,
result
=
routes
[
i
];
}
}
else
{
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
&
(
exclusive_min
?
PST_MORE_SPECIFIC
:
PST_MORE_SPECIFIC
|
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
];
}
}
if
(
result
)
assert
(
v4mapped
(
dst_prefix
)
==
v4mapped
(
result
->
src
->
prefix
));
return
result
;
...
...
route.h
View file @
5bf9d524
...
...
@@ -78,7 +78,7 @@ struct babel_route *find_installed_route(const unsigned char *prefix,
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_
min_dst
,
int
is_min_src
,
int
exclusive_min
);
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