blastbeat

Results 20 comments of blastbeat

To implement this indeed reasonable suggestion, one has to 1) Rewrite `cmd_ban.lua`, redefine the database holding all banned entities 2) Add a new listener "onAccept", which is called immediately after...

Your pinger INF seems to miss one of the following named parameters: NI, ID, PD, I4 oder I6. Can you provide an example session of your pinger connecting to luadch?

Those clients don't send I4 or I6 fields in their INF. Reading the ADC protocol spec, it seems to be an optional parameter. I will fix this. @HadesDCH where can...

> Those clients don't send I4 or I6 fields in their INF. Reading the ADC protocol spec, it seems to be an optional parameter. I will fix this. Yes, as...

I think @Sopor has a point. Displaying a more helpful error message would be an improvement.

Best is to compile luadch from scratch on your Linux machine. Here is an explanation how to do it on Debian based systems: https://github.com/luadch/luadch/issues/232#issuecomment-2385708150

> Couldn't this be automated somehow? I will think about this. At least some upgrade instructions would be a good idea.

luadch can only handle 1024 open sockets on linux. this is due to FD_SETSIZE. this is an annoying problem, see also https://www.google.de/#q=FD_SETSIZE+linux on the other hand, luadch should swallow more...

there seem to be some hacks to "fix" this FD_SETSIZE issue on linux, but nothing i call reliable. years ago i wrote a libevent based branch of luadch, which hasn't...

Eventually I will replace "select" by "poll" on unix. This will solve the issue.