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

Fix the Backward compatibility changes in MACSEC attribute #1215

Closed
wants to merge 1 commit into from
Closed
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
6 changes: 3 additions & 3 deletions inc/saimacsec.h
Original file line number Diff line number Diff line change
Expand Up @@ -776,6 +776,9 @@ typedef enum _sai_macsec_sa_attr_t
*/
SAI_MACSEC_SA_ATTR_CONFIGURED_EGRESS_XPN,

/** @ignore - for backward compatibility */
SAI_MACSEC_SA_ATTR_XPN = SAI_MACSEC_SA_ATTR_CONFIGURED_EGRESS_XPN,

/**
* @brief MACsec current packet number (PN/XPN). For ingress, largest
* received packet number. For egress, 1 less than the next packet number.
Expand All @@ -785,9 +788,6 @@ typedef enum _sai_macsec_sa_attr_t
*/
SAI_MACSEC_SA_ATTR_CURRENT_XPN,

/** @ignore - for backward compatibility */
SAI_MACSEC_SA_ATTR_XPN = SAI_MACSEC_SA_ATTR_CURRENT_XPN,

/**
* @brief Configured minimum acceptable ingress MACsec packet number (PN/XPN).
* Updated by value from MACsec peer by Key Agreement protocol.
Expand Down