almost done ackshually

This commit is contained in:
2025-01-31 17:18:35 -05:00
parent 6dcf5b9e2e
commit b09cb83017
21 changed files with 1646 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
package netsplit
import (
"go4.org/netipx"
"net/netip"
)
// Split splits the network defined in a HostSplitter alongside its configuration and performs the subnetting.
func (h *HostSplitter) Split() (nets []*netip.Prefix, remaining *netipx.IPSet, err error) {
// TODO
return
}