diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2006-10-31 09:29:07 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2006-10-31 09:29:07 +0000 |
commit | 2d1bb39121cf739517b55c68a84e5d9ad5b31619 (patch) | |
tree | fff9b9d1a5f7445ca000040fe0c8399298acbac8 /epan/dissectors/packet-cast.c | |
parent | 4343de3513f4a1405f06ca9bdf82c134ac10594e (diff) | |
download | wireshark-2d1bb39121cf739517b55c68a84e5d9ad5b31619.tar.gz wireshark-2d1bb39121cf739517b55c68a84e5d9ad5b31619.tar.bz2 wireshark-2d1bb39121cf739517b55c68a84e5d9ad5b31619.zip |
change the signature for the get_pdu_len() function pointer passed to tcp_dissect_pdus() to also include a packet_info pointer.
there are many reasons why some protocols actually need to be able to access the pinfo structure while determining the pdu size
svn path=/trunk/; revision=19751
Diffstat (limited to 'epan/dissectors/packet-cast.c')
-rw-r--r-- | epan/dissectors/packet-cast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-cast.c b/epan/dissectors/packet-cast.c index 8af644186f..9f71d35f5e 100644 --- a/epan/dissectors/packet-cast.c +++ b/epan/dissectors/packet-cast.c @@ -1038,7 +1038,7 @@ static void dissect_cast_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree } /* Get the length of a single CAST PDU */ -static guint get_cast_pdu_len(tvbuff_t *tvb, int offset) +static guint get_cast_pdu_len(packet_info *pinfo _U_, tvbuff_t *tvb, int offset) { guint32 hdr_data_length; |