aboutsummaryrefslogtreecommitdiffstats
path: root/tools/msnchat
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2006-06-06 23:27:21 +0000
committerGerald Combs <gerald@wireshark.org>2006-06-06 23:27:21 +0000
commit4ed6fc0bc38c1540bc96c212bc9f2003c9cd12d2 (patch)
tree0504a120491b81fff192bbb567f93537e6e18ccf /tools/msnchat
parent4be9eaddb33e5e5da91a2864e8a380672a4dcd6e (diff)
Ethereal -> Wireshark
svn path=/trunk/; revision=18374
Diffstat (limited to 'tools/msnchat')
-rwxr-xr-xtools/msnchat6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/msnchat b/tools/msnchat
index 24ec5855ba..722aee0430 100755
--- a/tools/msnchat
+++ b/tools/msnchat
@@ -25,7 +25,7 @@ import re
import sys
import array
import string
-import EtherealXML
+import WiresharkXML
import getopt
# By default we output the HTML to stdout
@@ -218,13 +218,13 @@ class CaptureFile:
"'msnms contains \"X-MMS-IM-Format\"' "
"-r " + capture_filename, "r")
- EtherealXML.parse_fh(pipe, self.collect_packets)
+ WiresharkXML.parse_fh(pipe, self.collect_packets)
for conv in self.conversations:
conv.Summarize()
def collect_packets(self, packet):
- """Collect the packets passed back from EtherealXML.
+ """Collect the packets passed back from WiresharkXML.
Sort them by TCP/IP conversation, as there could be multiple
clients per machine."""
src_ip = packet.get_items("ip.src")[-1].get_show()