Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug in description statements #99

Merged
merged 2 commits into from Nov 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions yang/ietf-alto.yang
Expand Up @@ -334,55 +334,71 @@ module ietf-alto {
if-feature "performance-metrics";
base cost-metric;
description
"One-way delay.";
reference
"RFC 9439: ALTO Performance Cost Metrics, Section 4.1";
}

identity delay-rt {
if-feature "performance-metrics";
base cost-metric;
description
"Round-trip delay.";
reference
"RFC 9439: ALTO Performance Cost Metrics, Section 4.2";
}

identity delay-variation {
if-feature "performance-metrics";
base cost-metric;
description
"Delay variation.";
reference
"RFC 9439: ALTO Performance Cost Metrics, Section 4.3";
}

identity lossrate {
if-feature "performance-metrics";
base cost-metric;
description
"Loss rate.";
reference
"RFC 9439: ALTO Performance Cost Metrics, Section 4.4";
}

identity hopcount {
if-feature "performance-metrics";
base cost-metric;
description
"Hop count.";
reference
"RFC 9439: ALTO Performance Cost Metrics, Section 4.5";
}

identity tput {
if-feature "performance-metrics";
base cost-metric;
description
"TCP throughput.";
reference
"RFC 9439: ALTO Performance Cost Metrics, Section 5.1";
}

identity bw-residual {
if-feature "performance-metrics";
base cost-metric;
description
"Residual bandwidth.";
reference
"RFC 9439: ALTO Performance Cost Metrics, Section 5.2";
}

identity bw-available {
if-feature "performance-metrics";
base cost-metric;
description
"Available bandwidth.";
reference
"RFC 9439: ALTO Performance Cost Metrics, Section 5.3";
}

Expand Down