int rc = ipq_set_verdict(h, msg->packet_id, NF_ACCEPT, 0, NULL);The '0' and 'NULL' mean "forward the original packet, I'm not supplying a replacement payload".
NF_ACCEPT - allow the packet to continue its route.
NF_DROP - drop the packet (without telling anyone, shh!).