summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte2010-04-30 14:26:12 +0200
committerHarald Welte2010-04-30 14:26:12 +0200
commitbb77c9d6cc6c1353817629f45b1414c9b0668b39 (patch)
treef2d976e995ef99585fae825398fd7023d506a621 /src
parentremove the unneeded bts_link pointer from msgb (diff)
downloadlibosmocore-bb77c9d6cc6c1353817629f45b1414c9b0668b39.tar.gz
libosmocore-bb77c9d6cc6c1353817629f45b1414c9b0668b39.tar.xz
libosmocore-bb77c9d6cc6c1353817629f45b1414c9b0668b39.zip
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 'src')
-rw-r--r--src/msgb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/msgb.c b/src/msgb.c
index aea92d4..9117a0a 100644
--- a/src/msgb.c
+++ b/src/msgb.c
@@ -84,5 +84,5 @@ void msgb_reset(struct msgb *msg)
msg->lchan = NULL;
msg->l2h = NULL;
msg->l3h = NULL;
- msg->smsh = NULL;
+ msg->l4h = NULL;
}