diff options
author | Philipp Maier <pmaier@sysmocom.de> | 2018-03-01 15:10:43 +0100 |
---|---|---|
committer | Neels Hofmeyr <neels@hofmeyr.de> | 2018-03-05 22:04:39 +0100 |
commit | 81b1b92238640730655c1ac45b3c582027571e1f (patch) | |
tree | f95afdb58e7e8b3783956481e95cf270626c522e | |
parent | 6df3864b118990c7d511bbeff3afa97fc06e17de (diff) |
handover_test: add missing stubs
handover_test.c lacks references to osmo_bsc_sigtran_send() and
osmo_bsc_sigtran_open_conn()
- add stubs to satisfy the controller
-rw-r--r-- | tests/handover/handover_test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/handover/handover_test.c b/tests/handover/handover_test.c index 7a2e9645d..3d32f3609 100644 --- a/tests/handover/handover_test.c +++ b/tests/handover/handover_test.c @@ -1616,3 +1616,5 @@ void trau_mux_unmap() {} void trau_mux_map_lchan() {} void trau_recv_lchan() {} void trau_send_frame() {} +int osmo_bsc_sigtran_send(struct gsm_subscriber_connection *conn, struct msgb *msg) { return 0; } +int osmo_bsc_sigtran_open_conn(struct gsm_subscriber_connection *conn, struct msgb *msg) { return 0; } |