Fix TCP timers use-after-free race conditions:
- Add a reference of tcpcb to its inpcb
- If needed, defer tcpcb deletion until TCP timers callouts have finished
Notes:
- This patch changes the ABI of struct tcpcb_mem, thus it changes struct tcpcb
- This is a fix for an old race condition found by Robert Watson (but without calling callout_drain())
- Its follows Robert Watson's advices to fix it
- In FreeBSD 10.x size of struct tcpcb_mem is 1024 bytes, in -CURRENT it is 1040, this patch add 8 bytes for a total of 1048 bytes
Comment ends in '.'.