mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-04-28 15:36:25 +00:00
babeld: C-style comments
Replacing C++-style comments with C-style comments. Signed-off-by: "Adriano Marto Reis" <adrianomarto@gmail.com>
This commit is contained in:
parent
a665be6a88
commit
896cf5c5f2
@ -484,9 +484,8 @@ DEFUN (babel_set_rtt_min,
|
||||
babel_ifp = babel_get_if_nfo(ifp);
|
||||
assert (babel_ifp != NULL);
|
||||
|
||||
babel_ifp->rtt_min =
|
||||
rtt
|
||||
* 1000; // value entered in milliseconds and stored as microseconds
|
||||
/* The value is entered in milliseconds but stored as microseconds. */
|
||||
babel_ifp->rtt_min = rtt * 1000;
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
||||
@ -506,9 +505,8 @@ DEFUN (babel_set_rtt_max,
|
||||
babel_ifp = babel_get_if_nfo(ifp);
|
||||
assert (babel_ifp != NULL);
|
||||
|
||||
babel_ifp->rtt_max =
|
||||
rtt
|
||||
* 1000; // value entered in milliseconds and stored as microseconds
|
||||
/* The value is entered in milliseconds but stored as microseconds. */
|
||||
babel_ifp->rtt_max = rtt * 1000;
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user