>>+ /* maintain a few stats per connection: */ >>+ int t_rcvoopack; /* out-of-order packets received */ >>+ int t_sndrexmitpack; /* retransmit packets sent */ >>+ int t_sndzerowin; /* zero-window updates sent */ > > Why are those int's? Shouldn't they be uint32_t since they are counters?
Only reason is they're int's in FreeBSD. I'll change them to uint32_t's. - HÃ¥vard