Reputation: 57
I was wondering if there are any libraries useful for network packet capture and analysis that do not build off of libpcap? I'm trying to develop a platform-independent application. Thanks
Upvotes: 1
Views: 830
Reputation: 876
This still uses libpcap but does so with JNI, so its still somewhat portable. Your processing code will be completely portable but is reliant on the JNI calls to interface with the actual network adapter/packets.
Upvotes: 1