ここからのコードスニペット:
void packet_handler(u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data)
{
....
/* retireve the position of the ip header */
ih = (ip_header *) (pkt_data +
14); //length of ethernet header
....
しかし、この画像は必ずしも14であるとは言いません:
(出典: lewis at www.dcs.gla.ac.uk )
どうすれば適切に行うことができますか?