I'm trying to reroute packets using libnetfilter. So far I can send the packets to NFQUEUE and can modify the packet using the libnetfilter API (From the INPUT table). However I don't have any idea on how to reinject the packet back to the network.
I searched the net and what I found was that setting NF_ACCEPT in "nfq_set_verdict()" should reinject the packet, but that does not work for me.
Please advice