We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, XDP-for-windows has struct xdp_md_ (with an underscore at the end)
typedef struct **xdp_md_** { void *data; ///< Pointer to start of packet data. void *data_end; ///< Pointer to end of packet data. uint64_t data_meta; ///< Packet metadata. uint32_t ingress_ifindex; ///< Ingress interface index. /* size: 26, cachelines: 1, members: 4 */ /* last cacheline: 26 bytes */ } xdp_md_t;
As per ebpf, it should be 'struct xdp_md'.
The text was updated successfully, but these errors were encountered:
shpalani
Successfully merging a pull request may close this issue.
Currently, XDP-for-windows has struct xdp_md_ (with an underscore at the end)
As per ebpf, it should be 'struct xdp_md'.
The text was updated successfully, but these errors were encountered: