nradix
nradix copied to clipboard
Translated to Golang implementation of nginx's radix tree code.
Results
1
nradix issues
Sort by
recently updated
recently updated
newest added
There seems to be a collision with the following specific CIDRs: - 42.0.0.0/22 - 2a00::/22 ``` package main import ( "fmt" "github.com/asergeyev/nradix" ) func main() { tr := nradix.NewTree(0) err...