Fix the number of args for skb_store_bytes by making the first arg implicit

This commit is contained in:
Pragyansh Chaturvedi
2025-11-03 21:11:16 +05:30
parent 67c9d9b932
commit 5e371787eb
2 changed files with 12 additions and 13 deletions

View File

@ -47,7 +47,7 @@ def uid():
return ctypes.c_int32(0)
def skb_store_bytes(skb, offset, from_buf, size, flags=0):
def skb_store_bytes(offset, from_buf, size, flags=0):
"""store bytes into a socket buffer"""
return ctypes.c_int64(0)