helpful comment

This commit is contained in:
Neale Pickett 2017-06-16 11:50:16 -06:00
parent 57c1f02825
commit 2fd72a0807
1 changed files with 1 additions and 1 deletions

2
pcat.c
View File

@ -178,7 +178,7 @@ print_frame(struct pcap_file *p, struct pcap_pkthdr *hdr, char const *frame)
struct stream streambuf;
struct stream *s = &streambuf;
sinit(s, frame, hdr->caplen, ENDIAN_NETWORK);
sinit(s, frame, hdr->caplen, ENDIAN_NETWORK); // pcap.c always outputs network byte order
printf("%u.%u ", hdr->ts.tv_sec, hdr->ts.tv_usec);
switch (p->linktype) {
case LINKTYPE_ETHERNET: