diff options
author | Harald Welte <laforge@gnumonks.org> | 2019-05-20 20:59:08 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2019-05-21 00:31:11 +0200 |
commit | 067824841f6b1139e3a926b355826454a3f371b2 (patch) | |
tree | e91b1d5195d14420699a7fa303340e8e4169d5c0 /src/common/vty.c | |
parent | 89bfea63c9e4e3a308288fcb98e48bf88919e246 (diff) |
cbch: Support Extended CBCH
The logic for Extended CBCH are the same as for the Basic CBCH, we just
need to
* duplicate our related state
* parse the optional RSL_IE_SMSCB_CHAN_INDICATOR IE
* start to send data on the Extended CBCH (TB=4..7)
Change-Id: If2c6dc7da1e2185ab75fc957f8d305ad8db22429
Closes: OS#3535
Diffstat (limited to 'src/common/vty.c')
-rw-r--r-- | src/common/vty.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/vty.c b/src/common/vty.c index 9e900b22..53a86743 100644 --- a/src/common/vty.c +++ b/src/common/vty.c @@ -865,8 +865,10 @@ static void bts_dump_vty(struct vty *vty, struct gsm_bts *bts) bts->agch_queue.rejected_msgs, bts->agch_queue.agch_msgs, bts->agch_queue.pch_msgs, VTY_NEWLINE); - vty_out(vty, " CBCH backlog queue length: %u%s", - llist_length(&bts->smscb_state.queue), VTY_NEWLINE); + vty_out(vty, " CBCH backlog queue length (BASIC): %u%s", + llist_length(&bts->smscb_basic.queue), VTY_NEWLINE); + vty_out(vty, " CBCH backlog queue length (EXTENDED): %u%s", + llist_length(&bts->smscb_extended.queue), VTY_NEWLINE); vty_out(vty, " Paging: queue length %d, buffer space %d%s", paging_queue_length(bts->paging_state), paging_buffer_space(bts->paging_state), VTY_NEWLINE); |