I'm trying to create a program able to read pcap files.
with the pcap_open_offline and pcap_next_ex functions, i've been able to get some informations, like the header of the packets and the data.
But in this file there are way more informations, like protocol, source ip, destination ip, etc...
First, I suppose this informations are in the "data" part, in hexadecimal am i right?
Is there a way, without using jnetpcap, to get those informations? Do I have to create a function able to convert hexa in readable datas? Is that possible?