integrate IPs with SessionS

This commit is contained in:
ionutboangiu
2025-12-08 12:36:32 +02:00
committed by Dan Christian Bogos
parent 17f11d060b
commit 897d6f0da1
15 changed files with 413 additions and 160 deletions

View File

@@ -1336,6 +1336,7 @@ const (
MetaGigawords = "*gigawords"
CapAttributes = "Attributes"
CapResourceAllocation = "ResourceAllocation"
CapAllocatedIP = "AllocatedIP"
CapMaxUsage = "MaxUsage"
CapRoutes = "Routes"
CapRouteProfiles = "RouteProfiles"

View File

@@ -194,6 +194,10 @@ func NewErrResourceS(err error) error {
return fmt.Errorf("RESOURCES_ERROR:%s", err)
}
func NewErrIPs(err error) error {
return fmt.Errorf("IPS_ERROR:%s", err)
}
func NewErrRouteS(err error) error {
return fmt.Errorf("ROUTES_ERROR:%s", err)
}