Hello, New to WS and TCP analysis and hoping someone can answer the following questions. I'm using version 2.2.4 on Windows 10
thanks for any help! also, if you want to recommend any good books on WS for beginners or TCP for beginners let me know. asked 14 Feb '17, 08:53 rock90 |
3 Answers:
1 - Wireshark is unable to show how many threads are running in an application. You might be able to infer something from looking at the network traffic, but it would basically be a guess. You can find the number of threads in use from Task Manager, select the Details tab, right click any of the column headers, click "Select Columns" and then check the Threads item. Note that a multithreaded application may still be using a single thread for network I/O (unlikely though). 2 - The conversations display shows a summary of the conversations between two endpoints, for TCP the endpoints are the source IP and port and destination IP and port. This has nothing to do with a single threaded or multithreaded application. 3 - A conversation includes all traffic between 2 endpoints, see item 2 above. A tcp stream is defined by the start, the initial SYN packet, and the end, the final FIN ACK packet. TCP conversations include all streams between those two endpoints. Your capture likely contains one conversation with a single stream hence the similarity of the results. answered 14 Feb '17, 09:10 grahamb ♦ |
Welcome.
answered 14 Feb '17, 09:00 Jasper ♦♦ |
As for training material we have to refer to all this material. answered 14 Feb '17, 09:59 Jaap ♦ |