link: vxlan: add localbypass support#166
Merged
Merged
Conversation
Intrduced support for the VXLAN localbypass attribute, which controls whether the VXLAN localbypass mode is turned on. This is equivalent to `ip link add name NAME type vxlan id VNI [no]localbypass`. Signed-off-by: Gris Ge <cnfourt@gmail.com>
There was a problem hiding this comment.
Code Review
This pull request adds the localbypass attribute to VXLAN link messages by implementing a new method in the LinkMessageBuilder. The reviewer suggested using standard Rust doc comments (///) for the new method to ensure proper documentation generation and recommended adding a unit test to verify the serialization of the new attribute.
| self.append_info_data(InfoVxlan::CollectMetadata(collect_metadata)) | ||
| } | ||
|
|
||
| // Adds the `localbypass` attribute to the VXLAN |
There was a problem hiding this comment.
The documentation comment for localbypass starts with // instead of ///. In Rust, /// is the standard prefix for doc comments that are parsed by rustdoc. Using // will prevent this line from appearing in the generated documentation.
Suggested change
| // Adds the `localbypass` attribute to the VXLAN | |
| /// Adds the localbypass attribute to the VXLAN |
References
- In Rust, /// is the standard prefix for doc comments that are parsed by rustdoc. (link)
| /// This is equivalent to `ip link add name NAME type vxlan id VNI | ||
| /// [no]localbypass`. \[no\]localbypass - specifies if the VXLAN | ||
| /// localbypass mode is turned on. | ||
| pub fn localbypass(self, localbypass: bool) -> Self { |
There was a problem hiding this comment.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Intrduced support for the VXLAN localbypass attribute, which controls
whether the VXLAN localbypass mode is turned on.
This is equivalent to
ip link add name NAME type vxlan id VNI [no]localbypass.