From dbfa85cc08f55cd88ffe86d70f71e3a13127d188 Mon Sep 17 00:00:00 2001 From: Alexander Chemeris Date: Fri, 8 May 2020 01:51:35 +0300 Subject: [PATCH] Fix a comment for the handle_unitdata_from_msc() function. Change-Id: If20632cfe63b78c2cb17c1bb9d12207a4956be64 --- src/osmo-bsc/osmo_bsc_sigtran.c | 4 ++-- 1 file 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) {