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
// A basic ipv4 address represented as a u32
typedef u32 ipv4_addr;
// A basic ipv6 address represented as a u32
typedef u32 ipv6_addr;
// A duration in NS stored as a u64
typedef u64 duration;
Steps to reproduce the bug
N/A
Expected Behavior
ipv4 should be u128
Additional Context
N/A
The text was updated successfully, but these errors were encountered:
Thanks for opening this issue! That's correct, unsigned __int128 would be fine for ipv6. Not just in the docs, but in the header file for the solo types as well. Would you be interested in contributing a fix for these?
Version
N/A
Linux Version
N/A
Describe the bug
This passage in the documentation cannot be right. ipv6 as a u32?
https://github.com/solo-io/bumblebee/blob/main/docs/concepts.md
// A basic ipv4 address represented as a u32
typedef u32 ipv4_addr;
// A basic ipv6 address represented as a u32
typedef u32 ipv6_addr;
// A duration in NS stored as a u64
typedef u64 duration;
Steps to reproduce the bug
N/A
Expected Behavior
ipv4 should be u128
Additional Context
N/A
The text was updated successfully, but these errors were encountered: