2016-03-02 25 views
1

當TCP在Wireshark的流工作,我用來做下列步驟:快捷方式「跟隨TCP流」

Right click -> Follow TCP Stream 

然後,它得到了即使是在新版本棘手:

Right click -> Follow -> Follow TCP Stream 

哪引導我們回到我的問題:

有沒有更快的方法來達到這個功能?

我似乎無法找到在分析菜單或Wireshark manual下定義的鍵盤快捷鍵。

+0

AFAIK沒有,但無論如何,這個問題根本不涉及編程。 – Nacho

回答

1

patch -p1 < follow-tcp-stream-f3.patch應用此補丁的Wireshark源目錄:

ui/gtk/main_menubar.c | 2 +- 
ui/qt/main_window.ui | 3 +++ 
2 files changed, 4 insertions(+), 1 deletion(-) 

diff --git a/ui/gtk/main_menubar.c b/ui/gtk/main_menubar.c 
index 76bafd1..08d7615 100644 
--- a/ui/gtk/main_menubar.c 
+++ b/ui/gtk/main_menubar.c 
@@ -1435 +1435 @@ static const GtkActionEntry main_menu_bar_entries[] = { 
- { "/Analyze/FollowTCPStream",       NULL,  "Follow TCP Stream",     NULL, NULL, G_CALLBACK(follow_tcp_stream_cb) }, 
+ { "/Analyze/FollowTCPStream",       NULL,  "Follow TCP Stream",     "F3", NULL, G_CALLBACK(follow_tcp_stream_cb) }, 
diff --git a/ui/qt/main_window.ui b/ui/qt/main_window.ui 
index 667a3e2..6325616 100644 
--- a/ui/qt/main_window.ui 
+++ b/ui/qt/main_window.ui 
@@ -1685,0 +1686,3 @@ 
+ <property name="shortcut"> 
+ <string>F3</string> 
+ </property> 
-- 
2.4.9 (Apple Git-60) 

Wireshark的建設後,你就可以使用F3遵循TCP流。