Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BpfStmt (0.07 sec)

  1. src/syscall/bpf_bsd.go

    //go:build darwin || dragonfly || freebsd || netbsd || openbsd
    
    // Berkeley packet filter for BSD variants
    
    package syscall
    
    import (
    	"unsafe"
    )
    
    // Deprecated: Use golang.org/x/net/bpf instead.
    func BpfStmt(code, k int) *BpfInsn {
    	return &BpfInsn{Code: uint16(code), K: uint32(k)}
    }
    
    // Deprecated: Use golang.org/x/net/bpf instead.
    func BpfJump(code, k, jt, jf int) *BpfInsn {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top