I've recorded some pcap files with tcpdump with option --time-stamp-precision nano
given,
and I can print the timestamps of these pcap files with tcpdump using a command like
tcpdump -r <my_pcap_file> -ttt
However, I can't seem to read the timestamp using libpcap, the best I'm getting now is microsecond resolution.
I found a recent post here that mentions that it's not supported yet in libpcap: https://github.com/google/gopacket/issues/298
Is this still true? Or do I need to check out pcapgo
mentioned in the post?