Hello,
I just want to understand how the
udp dissector works and have misunderstanding of following codes
lines:
static e_udphdr
udphstruct[4], *udph;
static int udph_count=0;
udph_count++;
if(udph_count>=4){
udph_count=0;
}
udph=&udphstruct[udph_count];
Could anybody explain why 4 and
how it works?
Thanks,