aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rtcp.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-09-03 10:33:12 +0000
committerGuy Harris <guy@alum.mit.edu>2001-09-03 10:33:12 +0000
commit3388bde488ac5c54044a487ca4199f5dda0715ba (patch)
tree1c0bb040cbd4022d4c91c56160dc76dca922f005 /packet-rtcp.h
parent31f2f8cabb4bce12d9cd9b60cd7644fe971b220e (diff)
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
Diffstat (limited to 'packet-rtcp.h')
-rw-r--r--packet-rtcp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-rtcp.h b/packet-rtcp.h
index 3cb1875b3e..d9b01e09b5 100644
--- a/packet-rtcp.h
+++ b/packet-rtcp.h
@@ -1,6 +1,6 @@
/* packet-rtcp.h
*
- * $Id: packet-rtcp.h,v 1.5 2001/06/12 06:31:14 guy Exp $
+ * $Id: packet-rtcp.h,v 1.6 2001/09/03 10:33:06 guy Exp $
*
* Routines for RTCP dissection
* RTCP = Real-time Transport Control Protocol
@@ -27,6 +27,6 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-void rtcp_add_address ( const unsigned char* ip_addr, int prt );
+void rtcp_add_address ( packet_info *pinfo, const unsigned char* ip_addr, int prt );
void dissect_rtcp ( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree );
void proto_register_rtcp( void );