diff options
author | Harald Welte <laforge@gnumonks.org> | 2019-04-15 11:48:05 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2019-04-25 20:07:11 +0000 |
commit | 2fce7887f480614491c9e983555c67921ea29d81 (patch) | |
tree | fab79ac61c966a1fa0e77b526e6fa8cbdf3c0362 /bsc-nat/BSC_MS_ConnectionHandler.ttcn | |
parent | 8a397ae7ba029418c670348375a5795e38d93923 (diff) |
RAN_Emulation: Modularize protocol support
The RAN_Emulation currently unconditionally provides BSSAP and MGCP support.
Let's re-structure the code so that support for those protocols is now
possible to enable/disable at compile time.
This patch is in preparation of introducing RANAP support in RAN_Emulation.
Change-Id: Id53ba3ff05f9946230e0e4a759245de14a0f9fbd
Related: OS#2856
Diffstat (limited to 'bsc-nat/BSC_MS_ConnectionHandler.ttcn')
-rw-r--r-- | bsc-nat/BSC_MS_ConnectionHandler.ttcn | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bsc-nat/BSC_MS_ConnectionHandler.ttcn b/bsc-nat/BSC_MS_ConnectionHandler.ttcn index 63d0451..e52b678 100644 --- a/bsc-nat/BSC_MS_ConnectionHandler.ttcn +++ b/bsc-nat/BSC_MS_ConnectionHandler.ttcn @@ -53,6 +53,7 @@ const RanOps BSC_MS_RanOps := { unitdata_cb := refers(UnitdataCallback), decode_dtap := false, role_ms := true, + protocol := RAN_PROTOCOL_BSSAP, sccp_addr_local := omit, sccp_addr_peer := omit } |