Add IsPeerInIngressPorts method to controller implementation

This commit is contained in:
bcmmbaga
2025-03-07 18:41:47 +03:00
parent 75826c5027
commit f5312d2932
+4
View File
@@ -25,3 +25,7 @@ func (c *controllerImpl) SendUpdate(ctx context.Context, accountID string, affec
func (c *controllerImpl) GetProxyNetworkMaps(ctx context.Context, accountID string) (map[string]*types.NetworkMap, error) {
return make(map[string]*types.NetworkMap), nil
}
func (c *controllerImpl) IsPeerInIngressPorts(ctx context.Context, accountID, peerID string) (bool, error) {
return false, nil
}