From Mike Duigou:

A minor change to the prototype of tcp_dissect_pdus() 
which uses the function pointer type from packet.h

svn path=/trunk/; revision=14535
This commit is contained in:
Anders Broman 2005-06-03 06:31:58 +00:00
parent 5df33850a9
commit bd44e72c95
2 changed files with 2 additions and 2 deletions

View File

@ -2074,7 +2074,7 @@ void
tcp_dissect_pdus(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
gboolean proto_desegment, guint fixed_len,
guint (*get_pdu_len)(tvbuff_t *, int),
void (*dissect_pdu)(tvbuff_t *, packet_info *, proto_tree *))
dissector_t dissect_pdu)
{
volatile int offset = 0;
int offset_before;

View File

@ -84,7 +84,7 @@ extern void
tcp_dissect_pdus(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
gboolean proto_desegment, guint fixed_len,
guint (*get_pdu_len)(tvbuff_t *, int),
void (*dissect_pdu)(tvbuff_t *, packet_info *, proto_tree *));
dissector_t dissect_pdu);
extern gboolean decode_tcp_ports(tvbuff_t *, int, packet_info *,
proto_tree *, int, int);