Drop packets in DROP class
This idea appeared when I was reading an old thread. If packets are classified to certain well known class, say DROP, then Kea would drop the packets. This would be trivial to implement and would be very powerful for users. They could use the whole rich capabilities of a classification to determine what they want to drop.
The code could be as simple as:
if (query->inClass('DROP')) {
return;
}