Structure for BIOCSETF
| 18 | |
| 19 | |
| 20 | class bpf_program(ctypes.Structure): |
| 21 | """"Structure for BIOCSETF""" |
| 22 | _fields_ = [('bf_len', ctypes.c_int), |
| 23 | ('bf_insns', ctypes.POINTER(bpf_insn))] |
| 24 | |
| 25 | |
| 26 | class sock_fprog(ctypes.Structure): |
no outgoing calls
no test coverage detected