neels has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-pfcp/+/36346?usp=email )
Change subject: osmo_gtlv_cfg: fix api doc ......................................................................
osmo_gtlv_cfg: fix api doc
Change-Id: Idcbb10edf384f49bd3f685323a68cdbf8b5d009d --- M include/osmocom/gtlv/gtlv.h 1 file changed, 11 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-pfcp refs/changes/46/36346/1
diff --git a/include/osmocom/gtlv/gtlv.h b/include/osmocom/gtlv/gtlv.h index d800f71..a6728a4 100644 --- a/include/osmocom/gtlv/gtlv.h +++ b/include/osmocom/gtlv/gtlv.h @@ -62,9 +62,9 @@ size_t tl_min_size;
/*! Read one TL from the start of src_data. - * \param gtlv Return the T (tag) value read from src_data in gtlv->tag. + * \param gtlv Return the T (tag) value read from src_data in gtlv->ti.tag. * Return the L (length) value read from src_data in gtlv->len. - * Return the I (instance) value read from src_data in gtlv->len; ignore if there is no I. + * Return the I (instance) value read from src_data in gtlv->ti.instance; ignore if there is no I. * Return the position just after the TL in gtlv->*val. If there is V data, point at the start of the * V data in src_data. If there is no V data, point at the byte just after the TL part in src_data. * \param src_data Part of raw message being decoded.