Count all received packet using Tshark
- by user1269592
i am build application who start capturing via Tshark with command line and i am looking for option to count all the received packets after i am start Tshark process this is my function who start the process:
int _interfaceNumber;
string _pcapPath;
Process tshark = new Process();
tshark.StartInfo.FileName = _tshark;
…