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
81e8eb6e
Commit
81e8eb6e
authored
Jan 07, 2008
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement flush_network_routes.
parent
d8d28457
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
route.c
route.c
+15
-0
route.h
route.h
+1
-0
No files found.
route.c
View file @
81e8eb6e
...
...
@@ -112,6 +112,21 @@ flush_neighbour_routes(struct neighbour *neigh)
}
}
void
flush_network_routes
(
struct
network
*
net
)
{
int
i
;
i
=
0
;
while
(
i
<
numroutes
)
{
if
(
routes
[
i
].
neigh
->
network
==
net
)
{
flush_route
(
routes
+
i
);
continue
;
}
i
++
;
}
}
unsigned
int
metric_to_kernel
(
int
metric
)
{
...
...
route.h
View file @
81e8eb6e
...
...
@@ -44,6 +44,7 @@ struct route *find_installed_route(const unsigned char *prefix,
unsigned
char
plen
);
void
flush_route
(
struct
route
*
route
);
void
flush_neighbour_routes
(
struct
neighbour
*
neigh
);
void
flush_network_routes
(
struct
network
*
net
);
unsigned
int
metric_to_kernel
(
int
metric
);
void
install_route
(
struct
route
*
route
);
void
uninstall_route
(
struct
route
*
route
);
...
...
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