aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-01-29 15:43:33 +0000
committerMichael Mann <mmann78@netscape.net>2013-01-29 15:43:33 +0000
commit23168c9677f82401292ac91da4f4be28a6af037a (patch)
treeec99e7080087b9400352d8fb60e517a79aedeb09
parentc268f2c153300cb599bdd2a1dfe807c194328a7d (diff)
Get Server Info should not have any data unless "challenged", per eMule source code. Addresses bug 3509 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3509).
Also updated documentation links. svn path=/trunk/; revision=47345
-rw-r--r--epan/dissectors/packet-edonkey.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/epan/dissectors/packet-edonkey.c b/epan/dissectors/packet-edonkey.c
index 1cb2ee07d7..37e3e68411 100644
--- a/epan/dissectors/packet-edonkey.c
+++ b/epan/dissectors/packet-edonkey.c
@@ -5,11 +5,12 @@
* Copyright 2008, Stefan Monhof <stefan.monhof@stud.uni-due.de>
*
* eDonkey dissector based on protocol descriptions from mldonkey:
- * http://savannah.nongnu.org/download/mldonkey/docs/Edonkey-Overnet/edonkey-protocol.txt
- * http://savannah.nongnu.org/download/mldonkey/docs/Edonkey-Overnet/overnet-protocol.txt
+ * ftp://ftp.chatnfiles.com/gnu-mirror/savannah/files/mldonkey/docs/Edonkey-Overnet/edonkey-protocol.txt
+ * ftp://ftp.chatnfiles.com/gnu-mirror/savannah/files/mldonkey/docs/Edonkey-Overnet/overnet-protocol.txt
*
* Kademlia dissector based on source code inspection of aMule 2.1.3 and eMule 0.48a
- * Modified and added on the basis of information and names from the eMule 0.49a source code
+ * Modified and added on the basis of information and names from the eMule 0.50 source code
+ * found at http://www.emule-project.net
*
* $Id$
*
@@ -2108,8 +2109,6 @@ static int dissect_edonkey_udp_message(guint8 msg_type,
chal = tvb_get_letohl(tvb, offset);
proto_tree_add_text(tree, tvb, offset, 4, "Challenge: 0x%08x", chal);
offset += 4;
- } else {
- offset = dissect_edonkey_string(tvb, pinfo, offset, tree);
}
}
break;