public static (long Ticks, FlowKey Key, Packet Packet) GetPacketAndKey(RawCapture arg)
        {
            var packet = arg.GetPacket();

            return(arg.Timeval.Date.Ticks, packet.GetFlowKey(), packet);
        }
Пример #2
0
 private (long Ticks, Packet Packet) GetPacket(RawCapture arg)
 {
     return(arg.Timeval.Date.Ticks, arg.GetPacket());
 }
 public static (long Ticks, Packet Packet) GetPacket(RawCapture arg)
 {
     return(arg.Timeval.Date.Ticks, arg.GetPacket());
 }
Пример #4
0
        private (long Ticks, FlowKey Key, Packet Packet) GetPacketAndKey(RawCapture rawCapture)
        {
            var packet = rawCapture.GetPacket();

            return(rawCapture.Timeval.Date.Ticks, packet.GetFlowKey(), packet);
        }