From 563f86ee5eab280006171dbd7fdb411715594355 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 21 Oct 2000 05:52:28 +0000 Subject: Support for conversations with "wildcard" destination addresses, from Jeff Foster. svn path=/trunk/; revision=2523 --- packet-rtsp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'packet-rtsp.c') diff --git a/packet-rtsp.c b/packet-rtsp.c index da9e88087a..4f64ac2e9d 100644 --- a/packet-rtsp.c +++ b/packet-rtsp.c @@ -4,7 +4,7 @@ * Jason Lango * Liberally copied from packet-http.c, by Guy Harris * - * $Id: packet-rtsp.c,v 1.20 2000/10/19 06:45:11 guy Exp $ + * $Id: packet-rtsp.c,v 1.21 2000/10/21 05:52:22 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -125,14 +125,14 @@ rtsp_create_conversation(const u_char *trans_begin, const u_char *trans_end) return; conv = conversation_new(&pi.src, &pi.dst, PT_UDP, s_data_port, - c_data_port, 0); + c_data_port, 0, 0); conversation_set_dissector(conv, dissect_rtp); if (!c_mon_port || !s_mon_port) return; conv = conversation_new(&pi.src, &pi.dst, PT_UDP, s_mon_port, - c_mon_port, 0); + c_mon_port, 0, 0); conversation_set_dissector(conv, dissect_rtcp); } -- cgit v1.2.3