From 06c81ae55eaa9a60dc99c8404efb3d0a2ab2442c Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Tue, 27 Jan 2026 01:58:06 +0530 Subject: [PATCH] docs: fix TC section in decorators --- docs/user-guide/decorators.md | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/docs/user-guide/decorators.md b/docs/user-guide/decorators.md index 5953b53..6937a52 100644 --- a/docs/user-guide/decorators.md +++ b/docs/user-guide/decorators.md @@ -117,16 +117,6 @@ def xdp_prog(ctx: c_void_p) -> c_int64: return XDP_PASS ``` -#### TC (Traffic Control) - -For network traffic filtering: - -```python -@section("classifier") -def tc_filter(ctx): - pass -``` - ### Finding Tracepoints To find available tracepoints on your system: @@ -260,7 +250,7 @@ def track_processes(ctx: c_void_p) -> c_int64: event.pid = pid() # Note: comm() requires a buffer parameter # comm(event.comm) # Fills event.comm with process name - + events.output(event) return c_int64(0) ```