I have a C# program that detects incoming TCP/IP packets on any given ethernet device. Every packet is processed in the following struct:
struct Packet{
String sourceIp;
DateTime arrivalDate;
}
If I have a List of every incoming Packets (List), how do I get those IPs that have more than X packets in less than Y seconds (say 1 second)?
I have no idea how to approach this problem, any help/tip will be highly appreciated.
Using Linq, it will be something like this:
At the end,
rapidIps
contains[a]
.