-
Notifications
You must be signed in to change notification settings - Fork 42
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
Bpf export #443
Bpf export #443
Conversation
@mtfriesen - is there a test needed for the export program? I have integrated it into the build process itself in bpf.vcxproj. I have also made it part of the MSI. Maybe that is not needed. Instead this tool should be in the nuget package. Is there anything else you would want me to change? |
src/bpfexport/bpfexport.c
Outdated
int exit_code = 0; | ||
|
||
if (argc == 2 && !_strcmpi("--clear", argv[1])) { | ||
for (uint32_t i = 0; i < sizeof(EbpfXdpSectionInfo) / sizeof(EbpfXdpSectionInfo[0]); i++) { |
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.
RTL_NUMBER_OF
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.
I blame it on the Copilot :P
Integrating into the MSI should be sufficient. Ideally we would test the |
This fixes #400 by adding a export tool for XDP program information.