diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-11-27 07:13:32 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-11-27 07:13:32 +0000 |
commit | 07b2709f8a32951cc2503d2e048d662a01cb472c (patch) | |
tree | 21d265bf7402a2739905bd87227383ae0a9f78ab /packet-rtcp.h | |
parent | fd456eaf0b5af46449882983b95529e073fd989f (diff) | |
download | wireshark-07b2709f8a32951cc2503d2e048d662a01cb472c.tar.gz wireshark-07b2709f8a32951cc2503d2e048d662a01cb472c.tar.bz2 wireshark-07b2709f8a32951cc2503d2e048d662a01cb472c.zip |
Change "conversation_set_dissector()" to take a dissector handle, rather
than a pointer to a dissector function, as an argument.
This means that the conversation dissector is called through
"call_dissector()", so the dissector itself doesn't have to worry about
checking whether the protocol is enabled or setting
"pinfo->current_proto", so get rid of the code that does that in
conversation dissectors. Also, make the conversation dissectors static.
Get rid of some direct calls to dissectors; replace them with calls
through handles, and, again, get rid of code to check whether a protocol
is enabled and set "pinfo->current_proto" where that code isn't needed.
Make those dissectors static if they aren't already static.
Add a routine "create_dissector_handle()" to create a dissector handle
without registering it by name, if the dissector isn't used outside the
module in which it's defined.
svn path=/trunk/; revision=4281
Diffstat (limited to 'packet-rtcp.h')
-rw-r--r-- | packet-rtcp.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packet-rtcp.h b/packet-rtcp.h index d9b01e09b5..3c5e35911c 100644 --- a/packet-rtcp.h +++ b/packet-rtcp.h @@ -1,6 +1,6 @@ /* packet-rtcp.h * - * $Id: packet-rtcp.h,v 1.6 2001/09/03 10:33:06 guy Exp $ + * $Id: packet-rtcp.h,v 1.7 2001/11/27 07:13:26 guy Exp $ * * Routines for RTCP dissection * RTCP = Real-time Transport Control Protocol @@ -28,5 +28,4 @@ */ 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 ); |