aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Chemeris <Alexander.Chemeris@gmail.com>2020-05-08 01:51:35 +0300
committeripse <Alexander.Chemeris@gmail.com>2020-05-09 00:36:02 +0000
commitdbfa85cc08f55cd88ffe86d70f71e3a13127d188 (patch)
tree1143a2cbedce2a7a59400b14f5bcc87ed9fd37c0
parent97a27214f1fc8bf0d1eb20a43c5cd6752f83a559 (diff)
Fix a comment for the handle_unitdata_from_msc() function.
-rw-r--r--src/osmo-bsc/osmo_bsc_sigtran.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bsc/osmo_bsc_sigtran.c b/src/osmo-bsc/osmo_bsc_sigtran.c
index 50b03ce47..08efae4be 100644
--- a/src/osmo-bsc/osmo_bsc_sigtran.c
+++ b/src/osmo-bsc/osmo_bsc_sigtran.c
@@ -143,14 +143,14 @@ static struct bsc_msc_data *get_msc_by_addr(const struct osmo_sccp_addr *msc_add
return NULL;
}
-/* Send data to MSC, use the connection id which MSC it is */
+/* Received data from MSC, use the connection id which MSC it is */
static int handle_data_from_msc(struct gsm_subscriber_connection *conn, struct msgb *msg)
{
msg->l3h = msgb_l2(msg);
return bsc_handle_dt(conn, msg, msgb_l2len(msg));
}
-/* Sent unitdata to MSC, use the point code to determine which MSC it is */
+/* Received unitdata from MSC, use the point code to determine which MSC it is */
static int handle_unitdata_from_msc(const struct osmo_sccp_addr *msc_addr, struct msgb *msg,
const struct osmo_sccp_user *scu)
{