spumer
spumer
Fix #60 PR Except filling rule is different. Fill from enum keys. Cause by default enum lib support getting by key, not by value. ```python class MyEnum(enum.Enum): me = 'developer'...
I suggest publish basics primitives like adapters, serializers and some usefull abstract features as separate library on pipy. This will allow use and enhance core for all developers. I already...
Spoofers love send data from random ports, but legit ports by default is 27005 (27006 in rare) We can make option to drop packets from unexpected ports (applications)
> Forwards L4D2_OnSendInRescueVehicle and L4D2_OnUseHealingItems are blocked in Linux L4D1/L4D2 to prevent crashes. Waiting for DHooks update to support object returns. Where we can track related DHook issue? May be...
## Checklist * [x] Does your title concisely summarize the problem? * [x] Did you include a minimal, reproducible example? * [x] What OS are you using? * [x] What...
The main reason for this behavior is we make usage of async_to_sync and sync_to_async is transparent. Programmers can use it without any _unexpected_ side effects. --- So, i can wait...
Now we have hardcoded ebpf program. It's just redirect a2s requests packets and sqproxy send reply. It's very slow. We want to change it. Also, we want to add some...
Move ebpf loading logic to bpfman. This allow us use all bpfman features and move ingress logic to XDP (for performance reasons) without increasing code complexity
We want customize ebpf logic by outer rules. The best way is generate .c file and use it instead builtin. This allow sqproxy generate ebpf-program by own rules (e.g plugins)...