aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocore
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-04-30 14:26:12 +0200
committerHarald Welte <laforge@gnumonks.org>2010-04-30 14:26:12 +0200
commitbb77c9d6cc6c1353817629f45b1414c9b0668b39 (patch)
treef2d976e995ef99585fae825398fd7023d506a621 /include/osmocore
parent3120ac3f78ded9483b9ca8a2bc1e113eff78baf7 (diff)
msgb: remove smsh, llch, tlli and gmmh
This is a lot of GSM/GPRS specific stuff in struct msgb which we want to avoid. The 'control buffer' will replace them.
Diffstat (limited to 'include/osmocore')
-rw-r--r--include/osmocore/msgb.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/include/osmocore/msgb.h b/include/osmocore/msgb.h
index 31e54dcd..61c224fe 100644
--- a/include/osmocore/msgb.h
+++ b/include/osmocore/msgb.h
@@ -36,17 +36,8 @@ struct msgb {
unsigned char *l2h;
/* the layer 3 header. For OML: FOM; RSL: 04.08; GPRS: BSSGP */
unsigned char *l3h;
-
/* the layer 4 header */
- union {
- unsigned char *smsh;
- unsigned char *llch;
- unsigned char *l4h;
- };
-
- /* the layer 5 header, GPRS: GMM header */
- unsigned char *gmmh;
- uint32_t tlli;
+ unsigned char *l4h;
uint16_t data_len;
uint16_t len;
@@ -66,7 +57,7 @@ extern void msgb_reset(struct msgb *m);
#define msgb_l1(m) ((void *)(m->l1h))
#define msgb_l2(m) ((void *)(m->l2h))
#define msgb_l3(m) ((void *)(m->l3h))
-#define msgb_sms(m) ((void *)(m->smsh))
+#define msgb_sms(m) ((void *)(m->l4h))
static inline unsigned int msgb_l1len(const struct msgb *msgb)
{