diff options
author | Harald Welte <laforge@gnumonks.org> | 2012-06-01 21:58:06 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2012-06-01 21:58:06 +0200 |
commit | b0c5b8a26946bd3222bdd227acad64a5c21ebb73 (patch) | |
tree | 984c3ef2acf47c45b0ebba0d41e0f4f242760898 /src | |
parent | eaea30c77486fedc1141c249ae2bee0770516051 (diff) |
introduce new "Cell Info" Event
Diffstat (limited to 'src')
-rw-r--r-- | src/util/event.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/util/event.c b/src/util/event.c index de1da99..f086d84 100644 --- a/src/util/event.c +++ b/src/util/event.c @@ -253,6 +253,14 @@ static int error_handler(struct lgsm_handle *lh, int evt, struct gsmd_evt_auxdat return 0; } +static int cinfo_handler(struct lgsm_handle *lh, int evt, struct gsmd_evt_auxdata *aux) +{ + printf("EVENT: Cell Info: %03u-%03u-%04x-%04x @ %04u (%02u)\n", + aux->u.cell_info.mcc, aux->u.cell_info.mnc, aux->u.cell_info.lac, + aux->u.cell_info.ci, aux->u.cell_info.arfcn, aux->u.cell_info.rxlev); + return 0; +} + int event_init(struct lgsm_handle *lh) { int rc; @@ -268,6 +276,7 @@ int event_init(struct lgsm_handle *lh) rc |= lgsm_evt_handler_register(lh, GSMD_EVT_OUT_STATUS, &cprog_handler); rc |= lgsm_evt_handler_register(lh, GSMD_EVT_IN_ERROR, &error_handler); rc |= lgsm_evt_handler_register(lh, GSMD_EVT_CALL_WAIT, &ccwa_handler); + rc |= lgsm_evt_handler_register(lh, GSMD_EVT_CELLINFO, &cinfo_handler); return rc; } |