Searched refs:sf_hdr (Results 1 – 1 of 1) sorted by relevance
444 struct pcap_sf_patched_pkthdr sf_hdr; in pcap_next_packet() local456 amt_read = fread(&sf_hdr, 1, ps->hdrsize, fp); in pcap_next_packet()476 hdr->caplen = SWAPLONG(sf_hdr.caplen); in pcap_next_packet()477 hdr->len = SWAPLONG(sf_hdr.len); in pcap_next_packet()478 hdr->ts.tv_sec = SWAPLONG(sf_hdr.ts.tv_sec); in pcap_next_packet()479 hdr->ts.tv_usec = SWAPLONG(sf_hdr.ts.tv_usec); in pcap_next_packet()481 hdr->caplen = sf_hdr.caplen; in pcap_next_packet()482 hdr->len = sf_hdr.len; in pcap_next_packet()483 hdr->ts.tv_sec = sf_hdr.ts.tv_sec; in pcap_next_packet()484 hdr->ts.tv_usec = sf_hdr.ts.tv_usec; in pcap_next_packet()[all …]