sysmobts: Implement forwarding the message back to the BSC

Address one part of the todo and forward all OML messages to the
main signalling link.
This commit is contained in:
Holger Hans Peter Freyther 2014-05-25 18:43:04 +02:00
parent 6fd71a306a
commit a4ccb04c6c
1 changed files with 8 additions and 2 deletions

View File

@ -25,6 +25,7 @@
#include <osmo-bts/logging.h>
#include <osmo-bts/oml.h>
#include <osmo-bts/msg_utils.h>
#include <osmo-bts/abis.h>
#include <osmocom/core/socket.h>
#include <osmocom/core/select.h>
@ -33,6 +34,12 @@
#include <string.h>
#include <unistd.h>
static int oml_dispatch_msg(struct gsm_bts *bts, struct msgb *msg)
{
msg->trx = bts->c0;
return abis_oml_sendmsg(msg);
}
static int oml_router_read_cb(struct osmo_fd *fd, unsigned int what)
{
struct msgb *msg;
@ -67,8 +74,7 @@ static int oml_router_read_cb(struct osmo_fd *fd, unsigned int what)
goto err;
}
/* todo dispatch message */
return oml_dispatch_msg(fd->data, msg);
err:
msgb_free(msg);
return -1;