We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9131d04 commit 06c81aeCopy full SHA for 06c81ae
docs/user-guide/decorators.md
@@ -117,16 +117,6 @@ def xdp_prog(ctx: c_void_p) -> c_int64:
117
return XDP_PASS
118
```
119
120
-#### TC (Traffic Control)
121
-
122
-For network traffic filtering:
123
124
-```python
125
-@section("classifier")
126
-def tc_filter(ctx):
127
- pass
128
-```
129
130
### Finding Tracepoints
131
132
To find available tracepoints on your system:
@@ -260,7 +250,7 @@ def track_processes(ctx: c_void_p) -> c_int64:
260
250
event.pid = pid()
261
251
# Note: comm() requires a buffer parameter
262
252
# comm(event.comm) # Fills event.comm with process name
263
253
+
264
254
events.output(event)
265
255
return c_int64(0)
266
256
0 commit comments