throttling requests to addresses at the connect() call level (badly)
Go to file
Luna fd78300975 add codes 2023-02-23 23:17:31 -03:00
src add codes 2023-02-23 23:17:31 -03:00
.gitignore add codes 2023-02-23 23:17:31 -03:00
LICENSE Initial commit 2023-02-23 17:33:43 +00:00
README.md add codes 2023-02-23 23:17:31 -03:00
build.zig add codes 2023-02-23 23:17:31 -03:00

README.md

generic_socket_ratelimiter

use https://github.com/mariusae/trickle though

throttling requests to specific hosts at the connect() call level

this implements the token bucket algorithm in zig, storing a hashmap for each address. default ratelimit is 1 connect every 10 seconds.

hostnames with many addresses won't be treated as a single thing.

if your clients use TCP keepalive, this won't be able to prevent request spamming at a certain host.

really, you should use trickle.

quickly slapping together an LD_PRELOADable library that puts custom logic on top of an existing function was fun to make though.