From 3388bde488ac5c54044a487ca4199f5dda0715ba Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Mon, 3 Sep 2001 10:33:12 +0000 Subject: Instead of having a single datum attached to a conversation, have a list of protocol-id-plus-datum pairs, so that multiple protocols can attach information to the same conversation. Dissectors that attach information to a conversation should not assume that if they find a conversation it has one of its data attached to it; the conversation might've been created by another dissector. svn path=/trunk/; revision=3901 --- packet-quake.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packet-quake.c') diff --git a/packet-quake.c b/packet-quake.c index 6982725d1c..920d864423 100644 --- a/packet-quake.c +++ b/packet-quake.c @@ -4,7 +4,7 @@ * Uwe Girlich * http://www.idsoftware.com/q1source/q1source.zip * - * $Id: packet-quake.c,v 1.17 2001/07/03 04:56:45 guy Exp $ + * $Id: packet-quake.c,v 1.18 2001/09/03 10:33:06 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -241,7 +241,7 @@ dissect_quake_CCREP_ACCEPT port = tvb_get_letohl(tvb, 0); c = conversation_new( &pinfo->src, &pinfo->dst, PT_UDP, port, - pinfo->destport, NULL, 0); + pinfo->destport, 0); if (c) { conversation_set_dissector(c, dissect_quake); } -- cgit v1.2.3