Replies: 6 comments
-
|
Do you experience same issue with Wireshark? Such delays usually means your application is taking too long to process packets, thus the Libpcap queue is getting full. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks |
Beta Was this translation helpful? Give feedback.
-
|
Do you performance issues when using the example applications? |
Beta Was this translation helpful? Give feedback.
-
|
Hello and thank you. I see where the problem lies: the program slows down when querying the DNS. I want to know the hostname :
Do you know how to speed up the DNS query? |
Beta Was this translation helpful? Give feedback.
-
|
Look at the HTTP URL instead of doing DNS to find the hostname |
Beta Was this translation helpful? Give feedback.
-
|
Not a sharppcap issue, closing |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using SharpPCap, but I'm still having the problem of slow response times between the HTTP request and the display of the corresponding packet, sometimes lasting several minutes. Therefore, I can't use SharpPCap for real-time analysis. However, I changed the settings when opening the IliveDevice interface. Here's the code managing the IliveDevice settings:
DeviceConfiguration config=new DeviceConfiguration();config.Immediate = true;and...
int readTimeoutMilliseconds = 1000;deviceC.Open(mode: DeviceModes.MaxResponsiveness | DeviceModes.MaxResponsiveness | DeviceModes.MaxResponsiveness,read_timeout: readTimeoutMilliseconds);deviceC.Open(config);Beta Was this translation helpful? Give feedback.
All reactions