aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/gsm/tlv.h
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-02-06 16:50:34 +0100
committerlaforge <laforge@osmocom.org>2021-02-06 16:09:13 +0000
commit53aff13af4c76c7b51cf68ebbd4a07a2509e7ebd (patch)
tree91d2f13176e7343a7f5f7cc24940e53b5b7b2808 /include/osmocom/gsm/tlv.h
parentd397a53cfc34606dacb4f5519f3d331d024a5f5d (diff)
tlv: clarify documentation for msgb_tv{16,32}_put()
Diffstat (limited to 'include/osmocom/gsm/tlv.h')
-rw-r--r--include/osmocom/gsm/tlv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmocom/gsm/tlv.h b/include/osmocom/gsm/tlv.h
index bcdebb3f..dc61de18 100644
--- a/include/osmocom/gsm/tlv.h
+++ b/include/osmocom/gsm/tlv.h
@@ -406,7 +406,7 @@ static inline uint8_t *msgb_tl_put(struct msgb *msg, uint8_t tag)
return len;
}
-/*! put (append) a TV16 field to a \ref msgb
+/*! put (append) a TV16 field (network order) to the given msgb
* \returns pointer to first byte after newly-put information */
static inline uint8_t *msgb_tv16_put(struct msgb *msg, uint8_t tag, uint16_t val)
{
@@ -414,7 +414,7 @@ static inline uint8_t *msgb_tv16_put(struct msgb *msg, uint8_t tag, uint16_t val
return tv16_put(buf, tag, val);
}
-/*! put (append) a TV32 field to a \ref msgb
+/*! put (append) a TV32 field (network order) to the given msgb
* \returns pointer to first byte after newly-put information */
static inline uint8_t *msgb_tv32_put(struct msgb *msg, uint8_t tag, uint32_t val)
{