Home
last modified time | relevance | path

Searched refs:sf_hdr (Results 1 – 1 of 1) sorted by relevance

/external/libpcap/
Dsavefile.c1176 struct pcap_sf_patched_pkthdr sf_hdr; in sf_next_packet() local
1188 amt_read = fread(&sf_hdr, 1, p->sf.hdrsize, fp); in sf_next_packet()
1209 hdr->caplen = SWAPLONG(sf_hdr.caplen); in sf_next_packet()
1210 hdr->len = SWAPLONG(sf_hdr.len); in sf_next_packet()
1211 hdr->ts.tv_sec = SWAPLONG(sf_hdr.ts.tv_sec); in sf_next_packet()
1212 hdr->ts.tv_usec = SWAPLONG(sf_hdr.ts.tv_usec); in sf_next_packet()
1214 hdr->caplen = sf_hdr.caplen; in sf_next_packet()
1215 hdr->len = sf_hdr.len; in sf_next_packet()
1216 hdr->ts.tv_sec = sf_hdr.ts.tv_sec; in sf_next_packet()
1217 hdr->ts.tv_usec = sf_hdr.ts.tv_usec; in sf_next_packet()
[all …]