Initial commit for TCP ROCCET source code.

This commit is contained in:
Lukas Prause
2025-10-29 12:03:06 +01:00
parent 78b80502d2
commit ac93bf86dc
7 changed files with 933 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
# Makefile for building both modules for the local machine
obj-m += tcp_roccet.o
obj-m += roccet_kprobe.o
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean