help tcpdump
I wrote a very simple program sending udp packet. As follows:
===============================================
packet[0]=0x05;
packet[1]=0x06;
packet[2]=0x07;
sendto(sockfd, packet, 3, 0, &destAddr, sizeof(struct sockaddr) );
===============================================
how do I use tcpdump to display the content of the packet:
ie. 050607
|