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

Adding enum to specifiy policy forwarding behaviour in case of decaps… #1218

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,15 @@ submodule openconfig-pf-forwarding-policies {
"This submodule contains configuration and operational state
relating to the definition of policy-forwarding policies.";

oc-ext:openconfig-version "0.6.1";
oc-ext:openconfig-version "0.6.2";

revision "2023-11-12" {
description
"Add support for forwarding inner packet before or after
HW look up.";
reference "0.6.2";
}

revision "2023-04-25" {
description
"Clarify use of interface-ref.";
Expand Down Expand Up @@ -214,6 +221,11 @@ submodule openconfig-pf-forwarding-policies {
"The policy is used only to classify incoming packets into corresponding
network instances.";
}
enum HW_LOOKUP_POLICY {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As this is an enum it cannot represent both the HW look ups, i.e., before or after. So, description seems to be causing some confusion.

description
"The policy reflects how to decapsulate a packet and
forward inner packet before or after HW look up .";
}
}
default PBR_POLICY;
description
Expand Down
Loading