I'm looking for a way to overload this function in jNetPcap:
Pcap openOffline(String fname, StringBuilder errbuf);
I want to implement it in this way:
Pcap openOffline(InputStraem stream, StringBuilder errbuf);
I have downloaded the source code but this function is a native
function, how can I go to the implementation of this function and try to change it?