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
0111f5c1
Commit
0111f5c1
authored
Jul 20, 2017
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove keep_unfeasible, in compliance with rfc6126bis.
parent
dd47d361
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
21 deletions
+5
-21
babeld.c
babeld.c
+1
-4
babeld.man
babeld.man
+0
-5
configuration.c
configuration.c
+3
-7
route.c
route.c
+1
-4
route.h
route.h
+0
-1
No files found.
babeld.c
View file @
0111f5c1
...
...
@@ -172,7 +172,7 @@ main(int argc, char **argv)
while
(
1
)
{
opt
=
getopt
(
argc
,
argv
,
"m:p:h:H:i:k:A:sr
u
S:d:g:G:lwz:M:t:T:c:C:DL:I:V"
);
"m:p:h:H:i:k:A:srS:d:g:G:lwz:M:t:T:c:C:DL:I:V"
);
if
(
opt
<
0
)
break
;
...
...
@@ -225,9 +225,6 @@ main(int argc, char **argv)
case
'r'
:
random_id
=
1
;
break
;
case
'u'
:
keep_unfeasible
=
1
;
break
;
case
'S'
:
state_file
=
optarg
;
break
;
...
...
babeld.man
View file @
0111f5c1
...
...
@@ -196,11 +196,6 @@ at least
Do not use this option unless you know what you are doing, as it can
cause persistent route flapping.
.TP
.BR keep-unfeasible " {" true | false }
This specifies whether to keep unfeasible (useless) routes, and is
equivalent to the command-line option
.BR \-u .
.TP
.BR random-id " {" true | false }
This specifies whether to use a random router-id, and is
equivalent to the command-line option
...
...
configuration.c
View file @
0111f5c1
...
...
@@ -755,8 +755,7 @@ parse_option(int c, gnc_t gnc, void *closure, char *token)
because they require no special setup or because there is special
case code for them. */
if
(
config_finalised
)
{
if
(
strcmp
(
token
,
"keep-unfeasible"
)
!=
0
&&
strcmp
(
token
,
"link-detect"
)
!=
0
&&
if
(
strcmp
(
token
,
"link-detect"
)
!=
0
&&
strcmp
(
token
,
"log-file"
)
!=
0
&&
strcmp
(
token
,
"diversity"
)
!=
0
&&
strcmp
(
token
,
"diversity-factor"
)
!=
0
&&
...
...
@@ -798,8 +797,7 @@ parse_option(int c, gnc_t gnc, void *closure, char *token)
add_import_table
(
v
);
else
abort
();
}
else
if
(
strcmp
(
token
,
"keep-unfeasible"
)
==
0
||
strcmp
(
token
,
"link-detect"
)
==
0
||
}
else
if
(
strcmp
(
token
,
"link-detect"
)
==
0
||
strcmp
(
token
,
"random-id"
)
==
0
||
strcmp
(
token
,
"daemonise"
)
==
0
||
strcmp
(
token
,
"skip-kernel-setup"
)
==
0
||
...
...
@@ -810,9 +808,7 @@ parse_option(int c, gnc_t gnc, void *closure, char *token)
if
(
c
<
-
1
)
goto
error
;
b
=
(
b
==
CONFIG_YES
);
if
(
strcmp
(
token
,
"keep-unfeasible"
)
==
0
)
keep_unfeasible
=
b
;
else
if
(
strcmp
(
token
,
"link-detect"
)
==
0
)
if
(
strcmp
(
token
,
"link-detect"
)
==
0
)
link_detect
=
b
;
else
if
(
strcmp
(
token
,
"random-id"
)
==
0
)
random_id
=
b
;
...
...
route.c
View file @
0111f5c1
...
...
@@ -47,7 +47,6 @@ int kernel_metric = 0, reflect_kernel_metric = 0;
int
allow_duplicates
=
-
1
;
int
diversity_kind
=
DIVERSITY_NONE
;
int
diversity_factor
=
256
;
/* in units of 1/256 */
int
keep_unfeasible
=
0
;
static
int
smoothing_half_life
=
0
;
static
int
two_to_the_one_over_hl
=
0
;
/* 2^(1/hl) * 0x10000 */
...
...
@@ -906,7 +905,7 @@ update_route(const unsigned char *id,
}
route
->
src
=
retain_source
(
src
);
if
(
(
feasible
||
keep_unfeasible
)
&&
refmetric
<
INFINITY
)
if
(
refmetric
<
INFINITY
)
route
->
time
=
now
.
tv_sec
;
route
->
seqno
=
seqno
;
...
...
@@ -950,8 +949,6 @@ update_route(const unsigned char *id,
return
NULL
;
if
(
!
feasible
)
{
send_unfeasible_request
(
neigh
,
0
,
seqno
,
metric
,
src
);
if
(
!
keep_unfeasible
)
return
NULL
;
}
route
=
calloc
(
1
,
sizeof
(
struct
babel_route
));
...
...
route.h
View file @
0111f5c1
...
...
@@ -51,7 +51,6 @@ struct route_stream;
extern
struct
babel_route
**
routes
;
extern
int
kernel_metric
,
allow_duplicates
,
reflect_kernel_metric
;
extern
int
diversity_kind
,
diversity_factor
;
extern
int
keep_unfeasible
;
static
inline
int
route_metric
(
const
struct
babel_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