You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I need an explanation about how this package works. for instance, NetAddr can be an uint32_t array with one entry and also an uint8_t array with 4 slots for IPV4.
I get the way for the 8-bit array but with 32-bit do we have to shift the numbers?
for example 192.168.1.2 is 2 + 1 + 256 + 168 + 256x256 + 192 + 256x256x256 ?
generally speaking, is there any documentation about how this package and its parts work?
I am already familiar with porting guide on GitHub and code examples on lobaro.com
thank you in advance.
The text was updated successfully, but these errors were encountered:
Hello, I need an explanation about how this package works. for instance, NetAddr can be an uint32_t array with one entry and also an uint8_t array with 4 slots for IPV4.
I get the way for the 8-bit array but with 32-bit do we have to shift the numbers?
for example 192.168.1.2 is 2 + 1 + 256 + 168 + 256x256 + 192 + 256x256x256 ?
generally speaking, is there any documentation about how this package and its parts work?
I am already familiar with porting guide on GitHub and code examples on lobaro.com
thank you in advance.
The text was updated successfully, but these errors were encountered: