>+ >+ /* 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? christos