define 'struct openbsc_msgb_cb' and accessor macro OBSC_MSGB_CB()

This commit is contained in:
Harald Welte 2010-04-30 14:36:25 +02:00
parent e562502e8d
commit 0809d79ef8
1 changed files with 7 additions and 0 deletions

View File

@ -79,6 +79,13 @@ enum bts_gprs_mode {
BTS_GPRS_EGPRS = 2,
};
/* the data structure stored in msgb->cb for openbsc apps */
struct openbsc_msgb_cb {
unsigned char *gmmh;
u_int32_t tlli;
};
#define OBSC_MSGB_CB(__msgb) ((struct openbsc_msgb_cb *)&((__msgb)->cb[0]))
struct msgb;
typedef int gsm_cbfn(unsigned int hooknum,
unsigned int event,