geoip: native maxmind .mmdb reader, G: geoban extban, GEOIP command, whois country

This commit is contained in:
Jean Chevronnet 2026-08-09 21:43:57 +00:00
parent aa384d56f2
commit 7a99f49ca4
7 changed files with 406 additions and 2 deletions

View file

@ -23,6 +23,7 @@ pub mod extjwt;
pub mod filehost;
pub mod filter;
pub mod flood;
pub mod geoip;
pub mod hashident;
pub mod hidewhois;
pub mod irccloudtags;
@ -113,5 +114,6 @@ pub fn module_commands() -> Vec<Box<dyn Command>> {
.chain(tline::commands())
.chain(rmode::commands())
.chain(customtitle::commands())
.chain(geoip::commands())
.collect()
}