aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet.h
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-07-11 05:47:02 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-07-11 05:47:02 +0000
commitce81449ed9294f0104598762ce293c3521820987 (patch)
tree26efdeea2934c6e99869fc3e5761451043dc3e05 /epan/packet.h
parent19d2d0dc765cd2417d693746226472207190434a (diff)
packet dissection now takes pointer to tvb instead of guint8 data
implement frame_tvbuff, right now almost a copy of 'real' tvb. svn path=/trunk/; revision=50497
Diffstat (limited to 'epan/packet.h')
-rw-r--r--epan/packet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/packet.h b/epan/packet.h
index a1d3c5a6f6..2d1e231a75 100644
--- a/epan/packet.h
+++ b/epan/packet.h
@@ -442,7 +442,7 @@ WS_DLL_PUBLIC void mark_frame_as_depended_upon(packet_info *pinfo, guint32 frame
* Dissectors should never modify the packet data.
*/
extern void dissect_packet(epan_dissect_t *edt,
- struct wtap_pkthdr *phdr, const guchar *pd,
+ struct wtap_pkthdr *phdr, tvbuff_t *tvb,
frame_data *fd, column_info *cinfo);
/* These functions are in packet-ethertype.c */