Implement support for CELL_IDENT_NO_CELL.

Change-Id: I941477fee041664bd3d256b272e3cafa9bce4e69
This commit is contained in:
Stefan Sperling 2018-01-09 16:09:08 +01:00
parent 80b88e093d
commit 7985f980ed
1 changed files with 4 additions and 0 deletions

View File

@ -339,6 +339,10 @@ static int bssmap_handle_paging(struct bsc_msc_data *msc,
lac = GSM_LAC_RESERVED_ALL_BTS;
switch (cell_ident) {
case CELL_IDENT_NO_CELL:
LOGP(DMSC, LOGL_NOTICE, "Ignoring no-op paging request for IMSI %s\n", mi_string);
return 0; /* nothing to do */
case CELL_IDENT_LAI_AND_LAC: {
struct gsm48_loc_area_id lai;
int i = 0;