Hi, thanks for the answer.
I'm trying to write a transparent proxy for any protocol to record the data sent to a specific port. This is so I don't have to sniff all traffic with libpcap as I'm trying to write a monitoring tool and I want to reduce the overhead. This means I cant change what is being sent.
I changed my code to write to the file only the amount of data that has been read from the stream in that iteration, which I feel would be okay since only one packet is sent at a time.
Right now wireshark opens the capture without errors but everything appears as an ethernet frame.
How does wireshark or libpcap decode the packet protocol when sniffing directly from the interface?
↧