No, documentation seems a little short, however, there is a good example of using different modules here:
http://the-devil.dnsalias.net/home/extremist
As it says, it is a bit extreme!!
You can use rules like I posted, if you have the modules, and the relevant libraries (/lib/iptables). Just adapt what I posted for your needs. If you have a DROPW target, then just substitute it for REJECT in my rules.
My preference is for REJECT targets. There seems to be 2 main trains of thought:
1. If someone tries to connect to a service on your server, and they're not allowed, DROP the packets, or TARPIT them.
2. Same, but REJECT them.
(1) is fine, but it leaves a deliberate attacker with a view of "oooh, I wonder what they're protecting, I wonder if I can get at it another way around?.... whereas (2) leaves them with the impression that the server isn't actually listening on that port.
After my ACCEPT rules, I generally finish a chain with something like:
ipt -A INPUT -p tcp -j REJECT --reject-with tcp-reset
ipt -A INPUT -j REJECT --reject-with icmp-port-unreachable
This will have the effect of rejecting packets as if the server protected by them wasn't listening anyway.
Just my 2p,
Hope it helps,
Karl