我是使用命令行开始通过Tshark捕获的构建应用程序,我正在寻找在我启动Tshark进程后计算所有收到的数据包的选项 这是我开始这个过程的功能:
int _interfaceNumber;
string _pcapPath;
Process tshark = new Process();
tshark.StartInfo.FileName = _tshark;
tshark.StartInfo.Arguments = string.Format(" -i " + _interfaceNumber + " -V -x -s " + _packetLimitSize + " -w " + _pcapPath);
tshark.StartInfo.RedirectStandardOutput = true;
tshark.StartInfo.UseShellExecute = false;
tshark.StartInfo.CreateNoWindow = true;
tshark.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
tshark.Start();
也许有人有想法?