diff options
author | Chris Maynard <Christopher.Maynard@GTECH.COM> | 2011-01-14 19:02:38 +0000 |
---|---|---|
committer | Chris Maynard <Christopher.Maynard@GTECH.COM> | 2011-01-14 19:02:38 +0000 |
commit | 116d67e1645eacacaa08aa8823e30b68713e7ea9 (patch) | |
tree | 216776fb60a77a33b43045cf3639b9ce6c2242a4 /doc | |
parent | f37c04357b6fc22e3b60cdac3571804d12cdf986 (diff) | |
download | wireshark-116d67e1645eacacaa08aa8823e30b68713e7ea9.tar.gz wireshark-116d67e1645eacacaa08aa8823e30b68713e7ea9.tar.bz2 wireshark-116d67e1645eacacaa08aa8823e30b68713e7ea9.zip |
Add tvb_get_[n|le]toh[40|48|56]() accessors. Addresses bug 5082.
svn path=/trunk/; revision=35538
Diffstat (limited to 'doc')
-rw-r--r-- | doc/README.developer | 6 |
1 files changed, 6 insertions, 0 deletions
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 |