how to make program in c#.net and use winpcap library in it?
I want to make project using winpcap library in c# .开发者_如何学Pythonnet. There is one library file in java named jpcap.jar. Which are the requirements to to make this project?
You might want to look at the .NET wrapper Pcap.Net over at codeplex.
Pcap.Net Features
Including:
- Getting the list of Live Devices on the local host.
- Reading packets from Live Devices (Network Devices) and Offline Devices (Files) using the different WinPcap methods.
- Receiving statistics on the entire capture.
- Receiving statistics of packets instead of the full packets.
- Using different sampling methods.
- Applying Berkley Packet Filters.
- Sending packets to Live Devices directly or using WinPcap's send queues.
- Dumping packets to Pcap files.
- Using Enumerables to receive packets (and LINQ).
精彩评论