mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-04-30 22:26:28 +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);
|
babel_ifp = babel_get_if_nfo(ifp);
|
||||||
assert (babel_ifp != NULL);
|
assert (babel_ifp != NULL);
|
||||||
|
|
||||||
babel_ifp->rtt_min =
|
/* The value is entered in milliseconds but stored as microseconds. */
|
||||||
rtt
|
babel_ifp->rtt_min = rtt * 1000;
|
||||||
* 1000; // value entered in milliseconds and stored as microseconds
|
|
||||||
return CMD_SUCCESS;
|
return CMD_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -506,9 +505,8 @@ DEFUN (babel_set_rtt_max,
|
|||||||
babel_ifp = babel_get_if_nfo(ifp);
|
babel_ifp = babel_get_if_nfo(ifp);
|
||||||
assert (babel_ifp != NULL);
|
assert (babel_ifp != NULL);
|
||||||
|
|
||||||
babel_ifp->rtt_max =
|
/* The value is entered in milliseconds but stored as microseconds. */
|
||||||
rtt
|
babel_ifp->rtt_max = rtt * 1000;
|
||||||
* 1000; // value entered in milliseconds and stored as microseconds
|
|
||||||
return CMD_SUCCESS;
|
return CMD_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user