migrate osmo-hnbgw to libosmo-sigtran's SCCP/M3UA

libosmo-sigtran now has a "proper" SCCP/M3UA stack, so we can make our hnb-gw
3GPP compliant by switching from the old SUA code to the new universal SCCP
user API with support for (currently) M3UA and SUA.

Main changes:

Use one cn_link to STP: We will connect to the core network using an (Osmo)STP
instance that routes to MSC and SGSN, so we want one SCCP link instead of two.
The only difference between IuCS and IuPS is a different remote osmo_sccp_addr.

This has various effects through the messaging code; the patch is a bit larger
than I would like, but it is hard to separate out truly independent smaller
changes.

CS or PS domain was previously flagged in the separate cn_link, as ctx pointer
for two separate sccp_sap_up()s. Now there's just one such ctx, so determine
is_ps from the RANAP Domain Indicator, or from the conn's hnbgw_context_map:

- Add is_ps to context_map_alloc_by_hnb().
- To find a matching context, the RUA ID alone is no longer sufficient, also
  match is_ps (possible optimization todo: separate lists).

We would send separate CS or PS Reset messages based on the cn_link, instead
send both CS and PS Reset at the same time for the single cn_link. This could
be adjusted to detect presence of MSC or SGSN instead.

Pending: adjust the VTY config to reflect that there is only one remote
address. Place a TODO comment for that.

Smaller changes:

rua_to_scu(): populate called and calling addresses for N_CONNECT and
N_UNITDATA.

Remove DSUA.

Don't build dummy_cn, which is still implemented on SUA. Mark todo to maybe
re-include it based on M3UA later.

In hnbgw_cnlink, place sccp related items in a separate sub-struct.

Do not keep an llist of cn_links, just have the one. Remove iteration and list
management.

Change jenkins script to build libosmo-sccp master.

Patch-by: hwelte, nhofmeyr
Change-Id: I8ac15fa2fd25bedb26297177e416976a5389b573
This commit is contained in:
Neels Hofmeyr 2017-07-03 16:49:43 +02:00
parent 12ed975996
commit 0f88c11009
10 changed files with 133 additions and 134 deletions

View File

@ -19,7 +19,7 @@ export LD_LIBRARY_PATH="$inst/lib"
osmo-build-dep.sh libosmo-abis
osmo-build-dep.sh libosmo-netif
osmo-build-dep.sh libosmo-sccp sysmocom/iu
osmo-build-dep.sh libosmo-sccp
osmo-build-dep.sh libasn1c
# the asn1c binary is used by the 'regen' target below

View File

@ -24,6 +24,8 @@ struct hnbgw_context_map {
struct hnbgw_cnlink *cn_link;
/* RUA contxt ID */
uint32_t rua_ctx_id;
/* False for CS, true for PS */
bool is_ps;
/* SCCP User SAP connection ID */
uint32_t scu_conn_id;
@ -33,6 +35,7 @@ struct hnbgw_context_map {
struct hnbgw_context_map *
context_map_alloc_by_hnb(struct hnb_context *hnb, uint32_t rua_ctx_id,
bool is_ps,
struct hnbgw_cnlink *cn_if_new);
struct hnbgw_context_map *

View File

@ -5,6 +5,7 @@
#include <osmocom/core/write_queue.h>
#include <osmocom/core/timer.h>
#include <osmocom/sigtran/sccp_sap.h>
#include <osmocom/sigtran/osmo_ss7.h>
#define DEBUG
#include <osmocom/core/logging.h>
@ -13,15 +14,16 @@
enum {
DMAIN,
DHNBAP,
DSUA,
DRUA,
DRANAP,
};
#define HNBGW_LOCAL_IP_DEFAULT "0.0.0.0"
/* TODO: CS and PS now both connect to OsmoSTP, i.e. that's always going to be the same address. Drop the
* duplicity. */
#define HNBGW_IUCS_REMOTE_IP_DEFAULT "127.0.0.1"
#define HNBGW_IUPS_REMOTE_IP_DEFAULT "127.0.0.2"
#define HNBGW_IUPS_REMOTE_IP_DEFAULT "127.0.0.1"
/* 25.467 Section 7.1 */
#define IUH_DEFAULT_SCTP_PORT 29169
@ -63,15 +65,11 @@ struct hnbgw_cnlink {
struct llist_head list;
enum hnbgw_cnlink_state state;
struct hnb_gw *gw;
/* are we a PS connection (1) or CS (0) */
int is_ps;
/* timer for re-transmitting the RANAP Reset */
struct osmo_timer_list T_RafC;
/* reference to the SCCP User SAP by which we communicate */
struct osmo_sccp_user *sua_user;
struct osmo_sccp_link *sua_link;
struct osmo_sccp_addr local_addr;
struct osmo_sccp_addr remote_addr;
struct osmo_sccp_instance *sccp;
struct osmo_sccp_user *sccp_user;
uint32_t next_conn_id;
/* linked list of hnbgw_context_map */
@ -131,14 +129,17 @@ struct hnb_gw {
struct llist_head hnb_list;
/* list of struct ue_context */
struct llist_head ue_list;
/* list of struct hnbgw_cnlink */
struct llist_head cn_list;
/* next availble UE Context ID */
uint32_t next_ue_ctx_id;
/* currently active CN links for CS and PS */
struct hnbgw_cnlink *cnlink_cs;
struct hnbgw_cnlink *cnlink_ps;
struct {
struct osmo_sccp_instance *instance;
struct hnbgw_cnlink *cnlink;
struct osmo_sccp_addr local_addr;
struct osmo_sccp_addr remote_addr_cs;
struct osmo_sccp_addr remote_addr_ps;
} sccp;
};
extern void *talloc_asn1_ctx;

View File

@ -2,4 +2,5 @@
#include <osmocom/iuh/hnbgw.h>
struct hnbgw_cnlink *hnbgw_cnlink_init(struct hnb_gw *gw, const char *host, uint16_t port, int is_ps);
int hnbgw_cnlink_init(struct hnb_gw *gw, const char *stp_host, uint16_t stp_port,
const char *local_ip, uint32_t local_pc);

View File

@ -58,6 +58,7 @@ static int alloc_cn_conn_id(struct hnbgw_cnlink *cn, uint32_t *id_out)
/* Map from a HNB + ContextID to the SCCP-side Connection ID */
struct hnbgw_context_map *
context_map_alloc_by_hnb(struct hnb_context *hnb, uint32_t rua_ctx_id,
bool is_ps,
struct hnbgw_cnlink *cn_if_new)
{
struct hnbgw_context_map *map;
@ -69,7 +70,8 @@ context_map_alloc_by_hnb(struct hnb_context *hnb, uint32_t rua_ctx_id,
if (map->cn_link != cn_if_new) {
continue;
}
if (map->rua_ctx_id == rua_ctx_id) {
if (map->rua_ctx_id == rua_ctx_id
&& map->is_ps == is_ps) {
return map;
}
}
@ -88,6 +90,7 @@ context_map_alloc_by_hnb(struct hnb_context *hnb, uint32_t rua_ctx_id,
map->cn_link = cn_if_new;
map->hnb_ctx = hnb;
map->rua_ctx_id = rua_ctx_id;
map->is_ps = is_ps;
map->scu_conn_id = new_scu_conn_id;
/* put it into both lists */
@ -134,31 +137,27 @@ static struct osmo_timer_list context_map_tmr;
static void context_map_tmr_cb(void *data)
{
struct hnb_gw *gw = data;
struct hnbgw_cnlink *cn;
struct hnbgw_cnlink *cn = gw->sccp.cnlink;
struct hnbgw_context_map *map;
DEBUGP(DMAIN, "Running context mapper garbage collection\n");
/* iterate over list of core network (links) */
llist_for_each_entry(cn, &gw->cn_list, list) {
struct hnbgw_context_map *map;
llist_for_each_entry(map, &cn->map_list, cn_list) {
switch (map->state) {
case MAP_S_RESERVED1:
/* first time we see this reserved
* entry: mark it for stage 2 */
map->state = MAP_S_RESERVED2;
break;
case MAP_S_RESERVED2:
/* first time we see this reserved
* entry: remove it */
map->state = MAP_S_NULL;
llist_del(&map->cn_list);
llist_del(&map->hnb_list);
talloc_free(map);
break;
default:
break;
}
llist_for_each_entry(map, &cn->map_list, cn_list) {
switch (map->state) {
case MAP_S_RESERVED1:
/* first time we see this reserved
* entry: mark it for stage 2 */
map->state = MAP_S_RESERVED2;
break;
case MAP_S_RESERVED2:
/* first time we see this reserved
* entry: remove it */
map->state = MAP_S_NULL;
llist_del(&map->cn_list);
llist_del(&map->hnb_list);
talloc_free(map);
break;
default:
break;
}
}
/* re-schedule this timer */

View File

@ -47,8 +47,7 @@
#include <osmocom/netif/stream.h>
#include <osmocom/sigtran/sua.h>
#include <osmocom/sigtran/protocol/sua.h>
#include <osmocom/sigtran/protocol/m3ua.h>
#include <osmocom/sigtran/sccp_sap.h>
#include <osmocom/iuh/hnbgw.h>
@ -82,16 +81,15 @@ static struct hnb_gw *hnb_gw_create(void *ctx)
gw->config.iucs_remote_ip = talloc_strdup(gw,
HNBGW_IUCS_REMOTE_IP_DEFAULT);
gw->config.iucs_remote_port = SUA_PORT;
gw->config.iucs_remote_port = M3UA_PORT;
gw->config.iups_remote_ip = talloc_strdup(gw,
HNBGW_IUPS_REMOTE_IP_DEFAULT);
gw->config.iups_remote_port = SUA_PORT;
gw->config.iups_remote_port = M3UA_PORT;
gw->next_ue_ctx_id = 23;
INIT_LLIST_HEAD(&gw->hnb_list);
INIT_LLIST_HEAD(&gw->ue_list);
INIT_LLIST_HEAD(&gw->cn_list);
context_map_init(gw);
@ -330,11 +328,6 @@ static const struct log_info_cat log_cat[] = {
.color = "",
.description = "Home Node B Application Part",
},
[DSUA] = {
.name = "DSUA", .loglevel = LOGL_DEBUG, .enabled = 1,
.color = "",
.description = "SCCP User Adaptation",
},
[DRUA] = {
.name = "DRUA", .loglevel = LOGL_DEBUG, .enabled = 1,
.color = "",
@ -382,7 +375,7 @@ static void print_usage()
static void print_help()
{
printf(" -h --help This text.\n");
printf(" -d option --debug=DHNBAP:DSUA:DRUA:DRANAP:DMAIN Enable debugging.\n");
printf(" -d option --debug=DHNBAP:DRUA:DRANAP:DMAIN Enable debugging.\n");
printf(" -D --daemonize Fork the process into a background daemon.\n");
printf(" -c --config-file filename The config file to use.\n");
printf(" -s --disable-color\n");
@ -451,7 +444,7 @@ static void handle_options(int argc, char **argv)
int main(int argc, char **argv)
{
struct osmo_sccp_user *sua_user;
struct osmo_sccp_user *sccp_user;
struct osmo_sccp_link *sua_link;
struct osmo_stream_srv_link *srv;
int rc;
@ -467,6 +460,8 @@ int main(int argc, char **argv)
if (rc < 0)
exit(1);
osmo_ss7_init();
vty_info.copyright = osmo_hnbgw_copyright;
vty_init(&vty_info);
@ -504,19 +499,25 @@ int main(int argc, char **argv)
exit(1);
}
osmo_sua_set_log_area(DSUA);
ranap_set_log_area(DRANAP);
OSMO_ASSERT(g_hnb_gw->config.iucs_remote_ip);
g_hnb_gw->cnlink_cs = hnbgw_cnlink_init(g_hnb_gw,
g_hnb_gw->config.iucs_remote_ip,
g_hnb_gw->config.iucs_remote_port,
0);
OSMO_ASSERT(g_hnb_gw->config.iups_remote_ip);
g_hnb_gw->cnlink_ps = hnbgw_cnlink_init(g_hnb_gw,
g_hnb_gw->config.iups_remote_ip,
g_hnb_gw->config.iups_remote_port,
1);
rc = hnbgw_cnlink_init(g_hnb_gw,
g_hnb_gw->config.iucs_remote_ip,
g_hnb_gw->config.iucs_remote_port,
"127.0.0.5" /* FIXME: configurable */,
23 /* FIXME: configurable */);
if (rc < 0) {
LOGP(DMAIN, LOGL_ERROR, "Failed to initialize SCCP link to CN\n");
exit(1);
}
osmo_sccp_make_addr_pc_ssn(&g_hnb_gw->sccp.remote_addr_cs,
1 /* FIXME: configurable */,
OSMO_SCCP_SSN_RANAP);
osmo_sccp_make_addr_pc_ssn(&g_hnb_gw->sccp.remote_addr_ps,
2 /* FIXME: configurable */,
OSMO_SCCP_SSN_RANAP);
OSMO_ASSERT(g_hnb_gw->config.iuh_local_ip);
LOGP(DMAIN, LOGL_NOTICE, "Listening for Iuh at %s %d\n",

View File

@ -24,8 +24,7 @@
#include <osmocom/core/utils.h>
#include <osmocom/core/timer.h>
#include <osmocom/sigtran/protocol/sua.h>
#include <osmocom/sigtran/sua.h>
#include <osmocom/sigtran/protocol/m3ua.h>
#include <osmocom/sigtran/sccp_sap.h>
#include <osmocom/sigtran/sccp_helpers.h>
@ -41,34 +40,32 @@
int hnbgw_cnlink_change_state(struct hnbgw_cnlink *cnlink, enum hnbgw_cnlink_state state);
static int transmit_rst(struct hnbgw_cnlink *cnlink)
static int transmit_rst(struct hnb_gw *gw, RANAP_CN_DomainIndicator_t domain,
struct osmo_sccp_addr *remote_addr)
{
struct msgb *msg;
struct msgb *msgprim;
RANAP_CN_DomainIndicator_t domain;
RANAP_Cause_t cause = {
.present = RANAP_Cause_PR_transmissionNetwork,
.choice. transmissionNetwork = RANAP_CauseTransmissionNetwork_signalling_transport_resource_failure,
};
if (cnlink->is_ps)
domain = RANAP_CN_DomainIndicator_ps_domain;
else
domain = RANAP_CN_DomainIndicator_cs_domain;
msg = ranap_new_msg_reset(domain, &cause);
return osmo_sccp_tx_unitdata_msg(cnlink->sua_link, &cnlink->local_addr,
&cnlink->remote_addr, msg);
return osmo_sccp_tx_unitdata_msg(gw->sccp.cnlink->sccp_user,
&gw->sccp.local_addr,
remote_addr,
msg);
}
/* Timer callback once T_RafC expires */
static void cnlink_trafc_cb(void *data)
{
struct hnbgw_cnlink *cnlink = data;
struct hnb_gw *gw = data;
transmit_rst(cnlink);
hnbgw_cnlink_change_state(cnlink, CNLINK_S_EST_RST_TX_WAIT_ACK);
transmit_rst(gw, RANAP_CN_DomainIndicator_cs_domain, &gw->sccp.remote_addr_cs);
transmit_rst(gw, RANAP_CN_DomainIndicator_ps_domain, &gw->sccp.remote_addr_ps);
hnbgw_cnlink_change_state(gw->sccp.cnlink, CNLINK_S_EST_RST_TX_WAIT_ACK);
/* The spec states that we should abandon after a configurable
* number of times. We decide to simply continue trying */
}
@ -81,7 +78,7 @@ int hnbgw_cnlink_change_state(struct hnbgw_cnlink *cnlink, enum hnbgw_cnlink_sta
case CNLINK_S_EST_PEND:
break;
case CNLINK_S_EST_CONF:
cnlink_trafc_cb(cnlink);
cnlink_trafc_cb(cnlink->gw);
break;
case CNLINK_S_EST_RST_TX_WAIT_ACK:
osmo_timer_schedule(&cnlink->T_RafC, 5, 0);
@ -293,7 +290,7 @@ static int handle_cn_data_ind(struct hnbgw_cnlink *cnlink,
return 0;
}
return rua_tx_dt(map->hnb_ctx, map->cn_link->is_ps, map->rua_ctx_id,
return rua_tx_dt(map->hnb_ctx, map->is_ps, map->rua_ctx_id,
msgb_l2(oph->msg), msgb_l2len(oph->msg));
}
@ -322,15 +319,15 @@ static int handle_cn_disc_ind(struct hnbgw_cnlink *cnlink,
return 0;
}
return rua_tx_disc(map->hnb_ctx, map->cn_link->is_ps, map->rua_ctx_id,
return rua_tx_disc(map->hnb_ctx, map->is_ps, map->rua_ctx_id,
&rua_cause, msgb_l2(oph->msg), msgb_l2len(oph->msg));
}
/* Entry point for primitives coming up from SCCP User SAP */
static int sccp_sap_up(struct osmo_prim_hdr *oph, void *ctx)
{
struct osmo_sccp_link *slink = ctx;
struct hnbgw_cnlink *cnlink = osmo_sccp_link_get_user_priv(slink);
struct osmo_sccp_user *scu = ctx;
struct hnbgw_cnlink *cnlink = osmo_sccp_user_get_priv(scu);
struct osmo_scu_prim *prim = (struct osmo_scu_prim *) oph;
int rc;
@ -361,53 +358,48 @@ static int sccp_sap_up(struct osmo_prim_hdr *oph, void *ctx)
return 0;
}
/* Set up a link towards the core network for the circuit switched (is_ps == 0)
* or packet switched (is_ps != 0) domain. */
struct hnbgw_cnlink *hnbgw_cnlink_init(struct hnb_gw *gw, const char *host, uint16_t port, int is_ps)
int hnbgw_cnlink_init(struct hnb_gw *gw, const char *stp_host, uint16_t stp_port,
const char *local_ip, uint32_t local_pc)
{
struct hnbgw_cnlink *cnlink = talloc_zero(gw, struct hnbgw_cnlink);
struct hnbgw_cnlink *cnlink;
int rc;
OSMO_ASSERT(!gw->sccp.instance);
OSMO_ASSERT(!gw->sccp.cnlink);
gw->sccp.instance = osmo_sccp_simple_client(gw, "OsmoHNBGW", local_pc,
OSMO_SS7_ASP_PROT_M3UA, 0, local_ip,
stp_port, stp_host);
if (!gw->sccp.instance) {
LOGP(DMAIN, LOGL_ERROR, "Failed to init SCCP Instance\n");
return -1;
}
LOGP(DRUA, LOGL_DEBUG, "SCCP uplink to STP: %s %u\n", stp_host, stp_port);
osmo_sccp_make_addr_pc_ssn(&gw->sccp.local_addr, local_pc,
OSMO_SCCP_SSN_RANAP);
cnlink = talloc_zero(gw, struct hnbgw_cnlink);
cnlink->gw = gw;
INIT_LLIST_HEAD(&cnlink->map_list);
cnlink->T_RafC.cb = cnlink_trafc_cb;
cnlink->T_RafC.data = cnlink;
cnlink->T_RafC.data = gw;
cnlink->next_conn_id = 1000;
cnlink->is_ps = is_ps;
osmo_sccp_make_addr_pc_ssn(&cnlink->local_addr, 2,
OSMO_SCCP_SSN_RANAP);
osmo_sccp_make_addr_pc_ssn(&cnlink->remote_addr, 1,
OSMO_SCCP_SSN_RANAP);
LOGP(DRUA, LOGL_DEBUG, "New hnbgw_cnlink %p (gw %p): %s %d %s\n",
cnlink, cnlink->gw, host, port, is_ps? "PS" : "CS");
cnlink->sua_user = osmo_sua_user_create(cnlink, sccp_sap_up, cnlink);
if (!cnlink->sua_user) {
LOGP(DMAIN, LOGL_ERROR, "Failed to init SUA\n");
goto out_free;
}
rc = osmo_sua_client_connect(cnlink->sua_user, host, port);
if (rc < 0) {
LOGP(DMAIN, LOGL_ERROR, "Failed to connect SUA\n");
goto out_user;
}
cnlink->sua_link = osmo_sua_client_get_link(cnlink->sua_user);
if (!cnlink->sua_link) {
LOGP(DMAIN, LOGL_ERROR, "Failed to get SUA link\n");
goto out_disconnect;
cnlink->sccp_user = osmo_sccp_user_bind_pc(gw->sccp.instance,
"OsmoHNBGW",
sccp_sap_up, OSMO_SCCP_SSN_RANAP,
gw->sccp.local_addr.pc);
if (!cnlink->sccp_user) {
LOGP(DMAIN, LOGL_ERROR, "Failed to init SCCP User\n");
return -1;
}
llist_add_tail(&cnlink->list, &gw->cn_list);
/* In sccp_sap_up() we expect the cnlink in the user's priv. */
osmo_sccp_user_set_priv(cnlink->sccp_user, cnlink);
return cnlink;
gw->sccp.cnlink = cnlink;
out_disconnect:
/* FIXME */
out_user:
osmo_sua_user_destroy(cnlink->sua_user);
out_free:
talloc_free(cnlink);
return NULL;
return 0;
}

View File

@ -24,7 +24,6 @@
#include <osmocom/netif/stream.h>
#include <osmocom/sigtran/sccp_sap.h>
#include <osmocom/sigtran/sua.h>
#include <unistd.h>
#include <errno.h>
@ -170,15 +169,19 @@ static int rua_to_scu(struct hnb_context *hnb,
struct msgb *msg;
struct osmo_scu_prim *prim;
struct hnbgw_context_map *map;
struct hnbgw_cnlink *cn;
struct hnbgw_cnlink *cn = hnb->gw->sccp.cnlink;
struct osmo_sccp_addr *remote_addr;
bool is_ps;
int rc;
switch (cN_DomainIndicator) {
case RUA_CN_DomainIndicator_cs_domain:
cn = hnb->gw->cnlink_cs;
remote_addr = &hnb->gw->sccp.remote_addr_cs;
is_ps = false;
break;
case RUA_CN_DomainIndicator_ps_domain:
cn = hnb->gw->cnlink_ps;
remote_addr = &hnb->gw->sccp.remote_addr_ps;
is_ps = true;
break;
default:
LOGP(DRUA, LOGL_ERROR, "Unsupported Domain %u\n",
@ -191,16 +194,19 @@ static int rua_to_scu(struct hnb_context *hnb,
return 0;
}
msg = msgb_alloc(1500, "rua_to_sccp");
prim = (struct osmo_scu_prim *) msgb_put(msg, sizeof(*prim));
osmo_prim_init(&prim->oph, SCCP_SAP_USER, type, PRIM_OP_REQUEST, msg);
map = context_map_alloc_by_hnb(hnb, context_id, cn);
map = context_map_alloc_by_hnb(hnb, context_id, is_ps, cn);
OSMO_ASSERT(map);
/* add primitive header */
switch (type) {
case OSMO_SCU_PRIM_N_CONNECT:
prim->u.connect.called_addr;
prim->u.connect.calling_addr;
prim->u.connect.called_addr = *remote_addr;
prim->u.connect.calling_addr = cn->gw->sccp.local_addr;
prim->u.connect.sccp_class = 2;
prim->u.connect.conn_id = map->scu_conn_id;
break;
@ -212,8 +218,8 @@ static int rua_to_scu(struct hnb_context *hnb,
prim->u.disconnect.cause = cause;
break;
case OSMO_SCU_PRIM_N_UNITDATA:
prim->u.unitdata.called_addr;
prim->u.unitdata.calling_addr;
prim->u.unitdata.called_addr = *remote_addr;
prim->u.unitdata.calling_addr = cn->gw->sccp.local_addr;
break;
default:
return -EINVAL;
@ -225,7 +231,7 @@ static int rua_to_scu(struct hnb_context *hnb,
memcpy(msg->l2h, data, len);
}
rc = osmo_sua_user_link_down(cn->sua_link, &prim->oph);
rc = osmo_sccp_user_sap_down(cn->sccp_user, &prim->oph);
return rc;
}

View File

@ -5,7 +5,7 @@ AM_CFLAGS = -g -I$(top_srcdir)/src/tests \
COMMON_LIBS = $(OSMOVTY_LIBS) $(OSMOCORE_LIBS) $(OSMOGSM_LIBS) $(ASN1C_LIBS) $(OSMOSIGTRAN_LIBS) -lsctp
check_PROGRAMS = test-ranap test-helpers test-hnbap hnb-test dummy-cn
check_PROGRAMS = test-ranap test-helpers test-hnbap hnb-test #dummy-cn
noinst_HEADERS = test_common.h hnb-test.h hnb-test-layers.h
@ -24,8 +24,9 @@ hnb_test_LDADD = $(COMMON_LIBS) $(top_builddir)/src/hnbap/libosmo-asn1-hnbap.a $
test_ranap_SOURCES = $(RANAP_FILES) test-ranap.c test_common.c
test_ranap_LDADD = $(COMMON_LIBS) $(top_builddir)/src/libosmo-ranap.la
dummy_cn_SOURCES = $(RANAP_FILES) test_common.c dummy_cn_sua.c
dummy_cn_LDADD = $(COMMON_LIBS) $(top_builddir)/src/libosmo-ranap.la
# TODO: re-add using SCCP?
#dummy_cn_SOURCES = $(RANAP_FILES) test_common.c dummy_cn_sua.c
#dummy_cn_LDADD = $(COMMON_LIBS) $(top_builddir)/src/libosmo-ranap.la
$(top_builddir)/src/libosmo-ranap.la:
$(MAKE) -C $(top_builddir)/src libosmo-ranap.la

View File

@ -62,11 +62,6 @@ static const struct log_info_cat log_cat[] = {
.color = "",
.description = "RANAP User Adaptation",
},
[DSUA] = {
.name = "SUA", .loglevel = LOGL_DEBUG, .enabled = 1,
.color = "",
.description = "SCCP User Adaptation",
},
};
static const struct log_info test_log_info = {