-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract ES2K NEIGHBOR_MOD_TABLE definitions (#135)
- Extracted the LNWv3 NEIGHBOR_MOD_TABLE definitions into a separate header file. Signed-off-by: Derek Foster <[email protected]>
- Loading branch information
Showing
5 changed files
with
24 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Copyright 2022-2024 Intel Corporation. | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* NEIGHBOR_MOD_TABLE for Linux Networking v2. | ||
*/ | ||
|
||
#ifndef __LNW_NEIGHBOR_MOD_TABLE_H__ | ||
#define __LNW_NEIGHBOR_MOD_TABLE_H__ | ||
|
||
#define LNW_NEIGHBOR_MOD_TABLE "linux_networking_control.neighbor_mod_table" | ||
|
||
#define LNW_NEIGHBOR_MOD_TABLE_KEY_VENDORMETA_MOD_DATA_PTR \ | ||
"vmeta.common.mod_blob_ptr" | ||
|
||
#define LNW_NEIGHBOR_MOD_TABLE_ACTION_SET_OUTER_MAC \ | ||
"linux_networking_control.set_outer_mac" | ||
#define LNW_ACTION_SET_OUTER_MAC_PARAM_DST_MAC_ADDR "dst_mac_addr" | ||
|
||
#endif /* __LNW_NEIGHBOR_MOD_TABLE_H__ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters