aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rtsp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-10-21 05:52:28 +0000
committerGuy Harris <guy@alum.mit.edu>2000-10-21 05:52:28 +0000
commit563f86ee5eab280006171dbd7fdb411715594355 (patch)
tree616003167e713e2f88482dfdd46c1869d68eb308 /packet-rtsp.c
parent183e9cbf25933dcd9abc8db485f5308459f192b2 (diff)
Support for conversations with "wildcard" destination addresses, from
Jeff Foster. svn path=/trunk/; revision=2523
Diffstat (limited to 'packet-rtsp.c')
-rw-r--r--packet-rtsp.c6
1 files changed, 3 insertions, 3 deletions
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 <jal@netapp.com>
* Liberally copied from packet-http.c, by Guy Harris <guy@alum.mit.edu>
*
- * $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 <gerald@zing.org>
@@ -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);
}