2021-08-23 13:14:53 +00:00
|
|
|
//go:build !linux && !windows
|
2016-05-25 05:46:18 +00:00
|
|
|
|
|
|
|
package libnetwork
|
|
|
|
|
|
|
|
import (
|
2023-04-28 08:00:38 +00:00
|
|
|
"errors"
|
2016-05-25 05:46:18 +00:00
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
2023-04-28 08:00:38 +00:00
|
|
|
func (c *Controller) cleanupServiceDiscovery(cleanupNID string) {}
|
|
|
|
|
|
|
|
func (c *Controller) cleanupServiceBindings(nid string) {}
|
2016-08-20 00:50:37 +00:00
|
|
|
|
2023-01-11 22:43:32 +00:00
|
|
|
func (c *Controller) addServiceBinding(name, sid, nid, eid string, vip net.IP, ingressPorts []*PortConfig, aliases []string, ip net.IP) error {
|
2023-04-28 08:00:38 +00:00
|
|
|
return errors.New("not supported")
|
2016-05-25 05:46:18 +00:00
|
|
|
}
|
|
|
|
|
2023-01-11 22:43:32 +00:00
|
|
|
func (c *Controller) rmServiceBinding(name, sid, nid, eid string, vip net.IP, ingressPorts []*PortConfig, aliases []string, ip net.IP) error {
|
2023-04-28 08:00:38 +00:00
|
|
|
return errors.New("not supported")
|
2016-05-25 05:46:18 +00:00
|
|
|
}
|
|
|
|
|
2023-04-28 08:00:38 +00:00
|
|
|
func (sb *Sandbox) populateLoadBalancers(*Endpoint) {}
|
2016-08-15 17:54:18 +00:00
|
|
|
|
2023-04-28 08:00:38 +00:00
|
|
|
func arrangeIngressFilterRule() {}
|