feat(p7ii): port delayed_kills io_loop K-line sweep from ircd.c
Port the second io_loop timer helper (sibling of P7hh check_pings,
ircd.c:447) to ircd-common/src/ircd.rs. De-static + guard the C body
under -DPORT_IRCD_DELAYED_KILLS_P7ii on ircd_link.o so the cref archive
exports cref_delayed_kills; #else extern proto for the still-C io_loop
caller.
Config-resolved: MAXDELAYEDKILLS=200 > MAXCONNECTIONS=50 -> the batch
clamp j always reaches 0, so the sweep completes in one call (persistent
statics reset every call; the return-rehashed incomplete-batch path is
unreachable). TIMEDKLINES off -> find_kill timedklines arg is 0.
The kflag==-1 kill arm (exit_client) is destructive and reached only
with both a matching K-line conf and rehashed>0, which the golden suite
never produces -> L1 is the gate, no L2 path. golden_registration stays
byte-identical.