-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
isisd, lib: add some codepoints usually shared with other vendors #17957
base: master
Are you sure you want to change the base?
isisd, lib: add some codepoints usually shared with other vendors #17957
Conversation
lib/srv6.h
Outdated
SRV6_ENDPOINT_BEHAVIOR_END_DT4_USID = 0x003F, | ||
SRV6_ENDPOINT_BEHAVIOR_END_DT46_USID = 0x0040, | ||
SRV6_ENDPOINT_BEHAVIOR_OPAQUE = 0xFFFF, | ||
SRV6_ENDPOINT_BEHAVIOR_RESERVED = 0x0000, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It'd be better not to un-do the existing clear formatting?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well, git clang will complain, no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang is wrong about several things - like this.
the goal is clear, readable code - if clang is wrong, then ... it's wrong.
Some codepoints can not be read by interoperating with CISCO. This is because PSP/USP flavor are used by default, and the display of the isis output has to be adapted. Signed-off-by: Philippe Guibert <[email protected]>
d39ae12
to
d95b65d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good ... waiting on @mjstapp 's comments about formatting ...
formatting looks fine - but there are compilation errors... |
Some codepoints can not be read by interoperating with CISCO. This is because PSP/USP flavor are used by default, and the display of the isis output has to be adapted.