diff options
author | Harald Welte <laforge@gnumonks.org> | 2019-02-23 14:38:23 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2019-02-23 14:38:23 +0100 |
commit | 79f92709396c04f991f1d4f9b888de75f53d2224 (patch) | |
tree | 165c48e6b319b60018d09e0524c82acd31ff4b36 /include/osmocom | |
parent | 47cf21f74f16462500ee89fbf13ff73e66a69641 (diff) |
GPRS: Doxygen documentation for 'struct libgb_msgb_cb'
Change-Id: I4144506feee74a8219bd3736087c30cc6323ec1d
Diffstat (limited to 'include/osmocom')
-rw-r--r-- | include/osmocom/gprs/gprs_msgb.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/osmocom/gprs/gprs_msgb.h b/include/osmocom/gprs/gprs_msgb.h index 43471e20..3f48b5bf 100644 --- a/include/osmocom/gprs/gprs_msgb.h +++ b/include/osmocom/gprs/gprs_msgb.h @@ -3,19 +3,19 @@ #pragma once #include <stdint.h> -/* the data structure stored in msgb->cb for libgb apps */ +/*! the data structure stored in msgb->cb for libgb apps */ struct libgb_msgb_cb { unsigned char *bssgph; unsigned char *llch; - /* Cell Identifier */ + /*! Cell Identifier */ unsigned char *bssgp_cell_id; - /* Identifiers of a BTS, equal to 'struct bssgp_bts_ctx' */ + /*! Identifiers of a BTS, equal to 'struct bssgp_bts_ctx' */ uint16_t nsei; uint16_t bvci; - /* Identifier of a MS (inside BTS), equal to 'struct sgsn_mm_ctx' */ + /*! Identifier of a MS (inside BTS), equal to 'struct sgsn_mm_ctx' */ uint32_t tlli; } __attribute__((packed, may_alias)); #define LIBGB_MSGB_CB(__msgb) ((struct libgb_msgb_cb *)&((__msgb)->cb[0])) |