Is there any function for retrieving the pcap file header or is it done manually(type casting)?
|
feedback
|
|
The pcap file header is handled by libpcap internally. You shouldn't have to manipulate it manually. You can open a pcap file for writing using You can open a pcap file for reading using | |||||
feedback
|
|
What information are you trying to retrieve from the file header? You can get the major and minor version with Libpcap provides no routines to directly hand you the file header, and does not supply anything that you could typecast to be a file header, so you can't do this with libpcap. If you want to read the file header, you will have to write your own code to replace libpcap, and that code will not be able to handle, for example, pcap-ng files (which will be the default file type in the next release of Wireshark), unlike code that uses libpcap (which can read pcap-ng files, as long as all the network interfaces in the pcap-ng file have the same link-layer header type and snapshot length, when they're using libpcap 1.1.0 or later). | |||
|
feedback
|