diff options
author | Harald Welte <laforge@gnumonks.org> | 2010-04-30 14:26:12 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2010-04-30 14:26:12 +0200 |
commit | bb77c9d6cc6c1353817629f45b1414c9b0668b39 (patch) | |
tree | f2d976e995ef99585fae825398fd7023d506a621 /src | |
parent | 3120ac3f78ded9483b9ca8a2bc1e113eff78baf7 (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 'src')
-rw-r--r-- | src/msgb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |