Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IoctlKCMAttach (0.1 sec)

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

    	var info KCMClone
    	if err := ioctlPtr(fd, SIOCKCMCLONE, unsafe.Pointer(&info)); err != nil {
    		return nil, err
    	}
    
    	return &info, nil
    }
    
    // IoctlKCMAttach attaches a TCP socket and associated BPF program file
    // descriptor to a multiplexor.
    func IoctlKCMAttach(fd int, info KCMAttach) error {
    	return ioctlPtr(fd, SIOCKCMATTACH, unsafe.Pointer(&info))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top