aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2023-05-04 16:23:32 +0200
committerlaforge <laforge@osmocom.org>2023-07-21 11:14:44 +0000
commit2436f40b4cf5b875700ab0e62bff5f7eb6a7ddc0 (patch)
tree784d34c0326034c5be5b41ae6d0f450aa0371683 /include
parent4827437a268ed794dff562d4a10681f5e5f5dc84 (diff)
ASCI: Add selection reason for VGCS/VBS channels
"enum lchan_select_reason" gets a new selection reason: "SELECT_FOR_VGCS" The selection "direction" can also be changed via VTY. Change-Id: I6b96d0a1df68efa5858b98297ebe0944b1473aaf Related: OS#4852
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/bsc/bts.h1
-rw-r--r--include/osmocom/bsc/lchan_select.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/bsc/bts.h b/include/osmocom/bsc/bts.h
index a2b84c6b6..3f7958c57 100644
--- a/include/osmocom/bsc/bts.h
+++ b/include/osmocom/bsc/bts.h
@@ -523,6 +523,7 @@ struct gsm_bts {
bool chan_alloc_chan_req_reverse;
bool chan_alloc_assignment_reverse;
bool chan_alloc_handover_reverse;
+ bool chan_alloc_vgcs_reverse;
/* Whether to use dynamic allocation mode for assignment */
bool chan_alloc_assignment_dynamic;
diff --git a/include/osmocom/bsc/lchan_select.h b/include/osmocom/bsc/lchan_select.h
index 8f1dc628a..d6a1b2026 100644
--- a/include/osmocom/bsc/lchan_select.h
+++ b/include/osmocom/bsc/lchan_select.h
@@ -5,6 +5,7 @@ enum lchan_select_reason {
SELECT_FOR_MS_CHAN_REQ,
SELECT_FOR_ASSIGNMENT,
SELECT_FOR_HANDOVER,
+ SELECT_FOR_VGCS,
};
extern const struct value_string lchan_select_reason_names[];