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
6a7b3338
Commit
6a7b3338
authored
Jun 30, 2007
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename max_hopcount to max_request_hopcount.
parent
0557e79f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
babel.c
babel.c
+2
-2
babel.h
babel.h
+1
-1
route.c
route.c
+2
-2
No files found.
babel.c
View file @
6a7b3338
...
@@ -64,7 +64,7 @@ int wired_hello_interval = -1;
...
@@ -64,7 +64,7 @@ int wired_hello_interval = -1;
int
idle_hello_interval
=
-
1
;
int
idle_hello_interval
=
-
1
;
int
update_interval
=
-
1
;
int
update_interval
=
-
1
;
int
max_hopcount
=
65
;
int
max_
request_
hopcount
=
65
;
struct
network
nets
[
MAXNETS
];
struct
network
nets
[
MAXNETS
];
int
numnets
=
0
;
int
numnets
=
0
;
...
@@ -758,7 +758,7 @@ expire_routes(void)
...
@@ -758,7 +758,7 @@ expire_routes(void)
if
(
route
->
installed
&&
route
->
refmetric
<
INFINITY
)
{
if
(
route
->
installed
&&
route
->
refmetric
<
INFINITY
)
{
if
(
route
->
time
<
now
.
tv_sec
-
MAX
(
5
,
route_timeout_delay
-
25
))
if
(
route
->
time
<
now
.
tv_sec
-
MAX
(
5
,
route_timeout_delay
-
25
))
send_unicast_request
(
route
->
nexthop
,
route
->
dest
,
send_unicast_request
(
route
->
nexthop
,
route
->
dest
,
max_hopcount
,
-
1
);
max_
request_
hopcount
,
-
1
);
}
}
i
++
;
i
++
;
}
}
...
...
babel.h
View file @
6a7b3338
...
@@ -98,7 +98,7 @@ extern int protocol_port;
...
@@ -98,7 +98,7 @@ extern int protocol_port;
extern
unsigned
char
protocol_group
[
16
];
extern
unsigned
char
protocol_group
[
16
];
extern
int
protocol_socket
;
extern
int
protocol_socket
;
extern
int
kernel_socket
;
extern
int
kernel_socket
;
extern
int
max_hopcount
;
extern
int
max_
request_
hopcount
;
int
network_idle
(
struct
network
*
net
);
int
network_idle
(
struct
network
*
net
);
void
update_hello_interval
(
struct
network
*
net
);
void
update_hello_interval
(
struct
network
*
net
);
route.c
View file @
6a7b3338
...
@@ -103,7 +103,7 @@ flush_route(struct route *route)
...
@@ -103,7 +103,7 @@ flush_route(struct route *route)
}
}
if
(
oldmetric
<
INFINITY
&&
if
(
oldmetric
<
INFINITY
&&
(
!
new_route
||
new_route
->
metric
>=
INFINITY
))
(
!
new_route
||
new_route
->
metric
>=
INFINITY
))
send_request
(
NULL
,
route
->
dest
,
max_hopcount
,
-
1
);
send_request
(
NULL
,
route
->
dest
,
max_
request_
hopcount
,
-
1
);
}
}
}
}
...
@@ -435,7 +435,7 @@ send_triggered_update(struct route *route, int oldmetric)
...
@@ -435,7 +435,7 @@ send_triggered_update(struct route *route, int oldmetric)
if
(
oldmetric
<
INFINITY
)
{
if
(
oldmetric
<
INFINITY
)
{
if
(
route
->
metric
>=
INFINITY
)
{
if
(
route
->
metric
>=
INFINITY
)
{
/* We just lost a route, request a new seqno from the source */
/* We just lost a route, request a new seqno from the source */
send_request
(
NULL
,
route
->
dest
,
max_hopcount
,
-
1
);
send_request
(
NULL
,
route
->
dest
,
max_
request_
hopcount
,
-
1
);
}
else
if
(
route
->
metric
-
oldmetric
>=
384
)
{
}
else
if
(
route
->
metric
-
oldmetric
>=
384
)
{
/* This route's metric has increased a lot -- let's hope we find
/* This route's metric has increased a lot -- let's hope we find
something better */
something better */
...
...
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