Reputation: 975
Which c-sharp wrapper of Pcap is fastest? How fast is PCap compared to using sockets?
Upvotes: 3
Views: 2070
Reputation: 16891
SharpPcap is appropriate both for capture (sniffing) and transmission (similar to UdpClient and TcpClient). I've used it in an application for high-performance UDP transmission and it could be tweaked to be significantly faster than UdpClient (there are examples of high-perf sending in the source).
Upvotes: 1