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

Updated UDP enums related to openconfig-aft-types. #1248

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
19 changes: 17 additions & 2 deletions release/models/aft/openconfig-aft-types.yang
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ module openconfig-aft-types {
"Types related to the OpenConfig Abstract Forwarding
Table (AFT) model";

oc-ext:openconfig-version "1.2.0";
oc-ext:openconfig-version "1.3.0";

revision "2025-01-28" {
description
"Deprecated UDP enum and replaced it by more fine-grained enums UDPV4 and UDPV6.";
reference "1.3.0";
}

revision "2024-07-18" {
description
Expand Down Expand Up @@ -97,7 +103,16 @@ module openconfig-aft-types {
}
enum UDP {
description
"The encapsulation header is UDP packet header.";
"DEPRECATED. The encapsulation header is UDP packet header. This node
is deprecated in favor of UDPV4 and UDPV6 nodes.";
}
enum UDPV4 {
description
"The encapsulation header is a UDP + IPv4 header.";
}
enum UDPV6 {
description
"The encapsulation header is a UDP + IPv6 header.";
}
}
description
Expand Down
Loading