Searched refs:sf_hdr (Results 1 – 1 of 1) sorted by relevance
432 struct pcap_sf_patched_pkthdr sf_hdr; in pcap_next_packet() local444 amt_read = fread(&sf_hdr, 1, ps->hdrsize, fp); in pcap_next_packet()465 hdr->caplen = SWAPLONG(sf_hdr.caplen); in pcap_next_packet()466 hdr->len = SWAPLONG(sf_hdr.len); in pcap_next_packet()467 hdr->ts.tv_sec = SWAPLONG(sf_hdr.ts.tv_sec); in pcap_next_packet()468 hdr->ts.tv_usec = SWAPLONG(sf_hdr.ts.tv_usec); in pcap_next_packet()470 hdr->caplen = sf_hdr.caplen; in pcap_next_packet()471 hdr->len = sf_hdr.len; in pcap_next_packet()472 hdr->ts.tv_sec = sf_hdr.ts.tv_sec; in pcap_next_packet()473 hdr->ts.tv_usec = sf_hdr.ts.tv_usec; in pcap_next_packet()[all …]