type syscall.SockFilter
8 uses
syscall (current package)
lsf_linux.go#L14: func LsfStmt(code, k int) *SockFilter {
lsf_linux.go#L15: return &SockFilter{Code: uint16(code), K: uint32(k)}
lsf_linux.go#L19: func LsfJump(code, k, jt, jf int) *SockFilter {
lsf_linux.go#L20: return &SockFilter{Code: uint16(code), Jt: uint8(jt), Jf: uint8(jf), K: uint32(k)}
lsf_linux.go#L75: func AttachLsf(fd int, i []SockFilter) error {
lsf_linux.go#L78: p.Filter = (*SockFilter)(unsafe.Pointer(&i[0]))
ztypes_linux_amd64.go#L493: type SockFilter struct {
ztypes_linux_amd64.go#L503: Filter *SockFilter
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |