Skip to content

Commit

Permalink
daemon: fix docstring for latencies in protobuf file
Browse files Browse the repository at this point in the history
  • Loading branch information
mlegner committed Nov 22, 2023
1 parent 2136a63 commit 98ec8c6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions proto/daemon/v1/daemon.proto
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,11 @@ message Path {
uint32 mtu = 4;
// The point in time when this path expires. In seconds since UNIX epoch.
google.protobuf.Timestamp expiration = 5;
// Latency lists the latencies between any two consecutive interfaces.
// Entry i describes the latency between interface i and i+1.
// Consequently, there are N-1 entries for N interfaces.
// A 0-value indicates that the AS did not announce a latency for this hop.
// Latency lists the latencies between any two consecutive interfaces.
// Entry i describes the latency between interface i and i+1.
// Consequently, there are N-1 entries for N interfaces.
// A negative value indicates that the AS did not announce a latency for
// this hop.
repeated google.protobuf.Duration latency = 6;
// Bandwidth lists the bandwidth between any two consecutive interfaces, in
// Kbit/s.
Expand Down

0 comments on commit 98ec8c6

Please sign in to comment.