Documentation ¶
Overview ¶
* This file is part of the KubeVirt project * * 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. * * Copyright 2020 Red Hat, Inc. *
Index ¶
Constants ¶
const ( SIOCETHTOOL = 0x8946 // linux/sockios.h ETHTOOL_GTXCSUM = 0x00000016 // linux/ethtool.h ETHTOOL_STXCSUM = 0x00000017 // linux/ethtool.h IFNAMSIZ = 16 // linux/if.h )
Variables ¶
This section is empty.
Functions ¶
func CreateListenConfig ¶ added in v0.36.0
func CreateListenConfig() net.ListenConfig
func EthtoolTXOff ¶ added in v0.11.0
Disable TX checksum offload on specified interface
Types ¶
type DHCPHandler ¶
type DHCPHandler struct {
// contains filtered or unexported fields
}
type EthtoolValue ¶ added in v0.11.0
linux/ethtool.h 'struct ethtool_value'
type ServeIfConn ¶ added in v0.36.0
type ServeIfConn interface { ReadFrom(b []byte) (n int, addr net.Addr, err error) WriteTo(b []byte, addr net.Addr) (n int, err error) Close() error }
func NewUDP4FilterListener ¶ added in v0.36.0
func NewUDP4FilterListener(interfaceName, laddr string) (c ServeIfConn, e error)
Creates listener on all interfaces and then filters packets not received by interfaceName