12345678910111213141516171819202122232425262728 |
- package udp
- import (
- "fmt"
- "github.com/flannel-io/flannel/backend"
- "github.com/flannel-io/flannel/pkg/ip"
- "github.com/flannel-io/flannel/subnet"
- )
- func newNetwork(sm subnet.Manager, extIface *backend.ExternalInterface, port int, nw ip.IP4Net, l *subnet.Lease) (*backend.SimpleNetwork, error) {
- return nil, fmt.Errorf("UDP backend is not supported on this architecture")
- }
|