i'm using the sharppcap library and try to setup a filter. My goal is to setup a filter that only add packets from one ip adress and not the whole amount of data of any ip and tcp packets. i had tried the whireshark notation...
device = CaptureDeviceList.Instance[itemIndex];
device.Open();
device.Filter = "ip.src=10.0.0.1 and tcp"; // doesn't work - only "ip and tcp" works
does anybody know how to configure the filters for this library ? :-)
thanks a lot :-)
Best Regards Jan