From 116d67e1645eacacaa08aa8823e30b68713e7ea9 Mon Sep 17 00:00:00 2001 From: Chris Maynard Date: Fri, 14 Jan 2011 19:02:38 +0000 Subject: Add tvb_get_[n|le]toh[40|48|56]() accessors. Addresses bug 5082. svn path=/trunk/; revision=35538 --- doc/README.developer | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'doc/README.developer') diff --git a/doc/README.developer b/doc/README.developer index b8956c82b8..ba810d6d07 100644 --- a/doc/README.developer +++ b/doc/README.developer @@ -1198,6 +1198,9 @@ integers, 32-bit integers (guint32), and 64-bit integers (guint64): guint16 tvb_get_ntohs(tvbuff_t*, gint offset); guint32 tvb_get_ntoh24(tvbuff_t*, gint offset); guint32 tvb_get_ntohl(tvbuff_t*, gint offset); +guint64 tvb_get_ntoh40(tvbuff_t*, gint offset); +guint64 tvb_get_ntoh48(tvbuff_t*, gint offset); +guint64 tvb_get_ntoh56(tvbuff_t*, gint offset); guint64 tvb_get_ntoh64(tvbuff_t*, gint offset); Network-to-host-order accessors for single-precision and @@ -1213,6 +1216,9 @@ Little-Endian-to-host-order accessors for 16-bit integers (guint16), guint16 tvb_get_letohs(tvbuff_t*, gint offset); guint32 tvb_get_letoh24(tvbuff_t*, gint offset); guint32 tvb_get_letohl(tvbuff_t*, gint offset); +guint64 tvb_get_letoh40(tvbuff_t*, gint offset); +guint64 tvb_get_letoh48(tvbuff_t*, gint offset); +guint64 tvb_get_letoh56(tvbuff_t*, gint offset); guint64 tvb_get_letoh64(tvbuff_t*, gint offset); Little-Endian-to-host-order accessors for single-precision and -- cgit v1.2.3