From 30c821fbaa7c5faa5890554cbea06aa46564e5f2 Mon Sep 17 00:00:00 2001 From: Olli Janatuinen Date: Fri, 25 Jul 2025 12:41:47 +0000 Subject: [PATCH] ipam: Support RequiresRequestReplay Signed-off-by: Olli Janatuinen --- ipam/api.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ipam/api.go b/ipam/api.go index 7ebc906..31706ea 100644 --- a/ipam/api.go +++ b/ipam/api.go @@ -29,7 +29,12 @@ type Ipam interface { // CapabilitiesResponse returns whether or not this IPAM required pre-made MAC type CapabilitiesResponse struct { + // Whether on address request, libnetwork must + // specify the endpoint MAC address RequiresMACAddress bool + // Whether of daemon start, libnetwork must replay the pool + // request and the address request for current local networks + RequiresRequestReplay bool } // AddressSpacesResponse returns the default local and global address space names for this IPAM