diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-09-08 00:43:51 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-09-08 00:43:51 +0000 |
commit | 0ee22efcd65609d886c9f9eb1a86e1ee98b29105 (patch) | |
tree | 408ee2763c3599181e725e4f893e90ecd33cec33 /packet-rtcp.c | |
parent | dd1b7eafafb5748757a0396f4cc6ad6e65f37483 (diff) | |
download | wireshark-0ee22efcd65609d886c9f9eb1a86e1ee98b29105.tar.gz wireshark-0ee22efcd65609d886c9f9eb1a86e1ee98b29105.tar.bz2 wireshark-0ee22efcd65609d886c9f9eb1a86e1ee98b29105.zip |
From Jason Lango:
Clean up RTSP Transport parsing and sub-conversation code.
Dissect RTP/MP4 (and other RTP/xxx) as RTP/AVP (for now).
svn path=/trunk/; revision=3912
Diffstat (limited to 'packet-rtcp.c')
-rw-r--r-- | packet-rtcp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-rtcp.c b/packet-rtcp.c index cfec976e8a..c9b937b05b 100644 --- a/packet-rtcp.c +++ b/packet-rtcp.c @@ -1,6 +1,6 @@ /* packet-rtcp.c * - * $Id: packet-rtcp.c,v 1.21 2001/09/03 10:33:06 guy Exp $ + * $Id: packet-rtcp.c,v 1.22 2001/09/08 00:43:51 guy Exp $ * * Routines for RTCP dissection * RTCP = Real-time Transport Control Protocol @@ -1218,6 +1218,8 @@ proto_register_rtcp(void) proto_register_field_array(proto_rtcp, hf, array_length(hf)); proto_register_subtree_array(ett, array_length(ett)); + register_dissector("rtcp", dissect_rtcp, proto_rtcp); + #if 0 register_init_routine( &rtcp_init ); #endif |