Move helper scripts to a new dir, make temp fixes to allow this

This commit is contained in:
Pragyansh Chaturvedi
2025-09-30 23:57:31 +05:30
parent fa2ff0a242
commit 7e45864552
6 changed files with 5 additions and 6 deletions

View File

@ -0,0 +1,15 @@
import ctypes
def ktime():
return ctypes.c_int64(0)
def pid():
return ctypes.c_int32(0)
def deref(ptr):
"dereference a pointer"
result = ctypes.cast(ptr, ctypes.POINTER(ctypes.c_void_p)).contents.value
return result if result is not None else 0
XDP_DROP = ctypes.c_int64(1)
XDP_PASS = ctypes.c_int64(2)