Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IoctlGetIfreqMTU (0.16 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    // IfreqMTU is struct ifreq used to get or set a network device's MTU.
    type IfreqMTU struct {
    	Name [IFNAMSIZ]byte
    	MTU  int32
    }
    
    // IoctlGetIfreqMTU performs the SIOCGIFMTU ioctl operation on fd to get the MTU
    // of the network device specified by ifname.
    func IoctlGetIfreqMTU(fd int, ifname string) (*IfreqMTU, error) {
    	var ifreq IfreqMTU
    	copy(ifreq.Name[:], ifname)
    	err := ioctlPtr(fd, SIOCGIFMTU, unsafe.Pointer(&ifreq))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
Back to top