Mirantis/virtlet

View on GitHub
pkg/nettools/nettools_unsupported.go

Summary

Maintainability
A
0 mins
Test Coverage
// +build !linux

/*
Copyright 2018 Mirantis

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package nettools

import (
    "github.com/vishvananda/netlink"
)

// Some missing constants that break syntax check
// on non-Linux systems
const (
    FAMILY_ALL     = 0
    FAMILY_V4      = 0
    RTPROT_KERNEL  = 0
    SCOPE_LINK     = 0
    SCOPE_UNIVERSE = 0
)

// there's bug in netlink_unspecified.go in netlink version we use
// that breaks non-Linux builds
func linkSetMaster(link netlink.Link, master *netlink.Bridge) error {
    return netlink.ErrNotImplemented
}