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

Add uSID endpoint enums for udx and udt #2098

Closed
Closed
Show file tree
Hide file tree
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
17 changes: 16 additions & 1 deletion inc/saisrv6.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ typedef enum _sai_my_sid_entry_endpoint_behavior_t
/** Endpoint with decapsulation and specific IPv6 table lookup */
SAI_MY_SID_ENTRY_ENDPOINT_BEHAVIOR_DT6,

/** Endpoint with decapsulation and specific IPv6 table lookup */
/** Endpoint with decapsulation and specific IPv4 table lookup */
SAI_MY_SID_ENTRY_ENDPOINT_BEHAVIOR_DT4,

/** Endpoint with decapsulation and specific IP table lookup */
Expand All @@ -102,6 +102,21 @@ typedef enum _sai_my_sid_entry_endpoint_behavior_t
/** End.uA function for shift-and-xconnect behavior */
SAI_MY_SID_ENTRY_ENDPOINT_BEHAVIOR_UA,

/** Endpoint with decapsulation and IPv4 Cross-connect for uSID */
SAI_MY_SID_ENTRY_ENDPOINT_BEHAVIOR_UDX4,

/** Endpoint with decapsulation and IPv6 Cross-connect for uSID */
SAI_MY_SID_ENTRY_ENDPOINT_BEHAVIOR_UDX6,

/** Endpoint with decapsulation and specific IPv4 Table lookup for uSID */
SAI_MY_SID_ENTRY_ENDPOINT_BEHAVIOR_UDT4,

/** Endpoint with decapsulation and specific IPv6 Table lookup for uSID */
SAI_MY_SID_ENTRY_ENDPOINT_BEHAVIOR_UDT6,

/** Endpoint with decapsulation and specific IP Table lookup for uSID */
SAI_MY_SID_ENTRY_ENDPOINT_BEHAVIOR_UDT46,

/** Custom range base value */
SAI_MY_SID_ENTRY_ENDPOINT_BEHAVIOR_CUSTOM_RANGE_START = 0x10000000,

Expand Down
1 change: 1 addition & 0 deletions meta/aspell.en.pws
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ Uninitialize
unordered
untagged
Untagged
uSID
Utils
validonly
validonlys
Expand Down
Loading