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
Extension-data's implementation is crude. We have to re-implement that.
The text was updated successfully, but these errors were encountered:
implementation example
pgen_arp pack; pack.ARP.hwsrc = ""; pack.DATA[0] = 1; pack.DATA[0] = 2;
char str = "test"; pgen_arp pack; pack.ARP.hwsrc = ""; memcpy(pack.DATA, str, sizeof(str));
Sorry, something went wrong.
pgen_arp pack; pack.ARP.hwsrc = ""; pack.DATA(str, sizeof(str));
I didn't use these example. Implemented below.
implemented result
pgen_arp pack; pack.ARP.hwsrc = ""; pack.DATA_set(str, sizeof(str)); pgen_hex(pack.DATA_get(), pack.DATA_len());
No branches or pull requests
Extension-data's implementation is crude. We have to re-implement that.
The text was updated successfully, but these errors were encountered: