-
Notifications
You must be signed in to change notification settings - Fork 61
This commit supports spdm-requester-emu communicate with other endpoints #341
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -22,6 +22,8 @@ | |||||
| #define SOCKET_TRANSPORT_TYPE_MCTP 0x01 | ||||||
| #define SOCKET_TRANSPORT_TYPE_PCI_DOE 0x02 | ||||||
| #define SOCKET_TRANSPORT_TYPE_TCP 0x03 | ||||||
| /* Support mctp kernel */ | ||||||
| #define SOCKET_TRANSPORT_TYPE_MCTP_KERNEL 0x05 | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To clearly distinguish the Linux kernel’s MCTP stack, would it be better to rename Additionally, since other transport layers may be added in the future, it would be advisable to use platform-specific qualifiers in all MCTP transport type definitions. For example:
Suggested change
This approach ensures clarity, and supports scalable extension for new transport backends. |
||||||
|
|
||||||
| #define SOCKET_TCP_NO_HANDSHAKE 0x00 | ||||||
| #define SOCKET_TCP_HANDSHAKE 0x01 | ||||||
|
|
||||||
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.
Could we consider using the official Linux man page — such as https://www.man7.org/linux/man-pages/man7/mctp.7.html — instead of the Discord link?
I’m unable to access Discord within the company network, and the man page provides a more reliable, standardized, and accessible reference for technical documentation.