laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-sccp/+/28320 )
Change subject: [cosmetic] sccp_scoc.c: fix comments about corresponding SCCP msg types ......................................................................
[cosmetic] sccp_scoc.c: fix comments about corresponding SCCP msg types
Change-Id: I0d7a81f72147f8022ddadfe28d04679097dfa492 --- M src/sccp_scoc.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sccp refs/changes/20/28320/1
diff --git a/src/sccp_scoc.c b/src/sccp_scoc.c index 5f109b3..f3f7a38 100644 --- a/src/sccp_scoc.c +++ b/src/sccp_scoc.c @@ -615,7 +615,7 @@ xua_msg_add_data(xua, SUA_IEI_DATA, msgb_l2len(prim->oph.msg), msgb_l2(prim->oph.msg)); break; - case SUA_CO_RELRE: /* Release Request == SCCP REL */ + case SUA_CO_RELRE: /* Release Request == SCCP RLSD */ if (!prim) goto prim_needed; xua->hdr = XUA_HDR(SUA_MSGC_CO, SUA_CO_RELRE); @@ -628,7 +628,7 @@ xua_msg_add_data(xua, SUA_IEI_DATA, msgb_l2len(prim->oph.msg), msgb_l2(prim->oph.msg)); break; - case SUA_CO_RELCO: /* Release Confirm == SCCP RLSD */ + case SUA_CO_RELCO: /* Release Confirm == SCCP RLC */ xua->hdr = XUA_HDR(SUA_MSGC_CO, SUA_CO_RELCO); xua_msg_add_u32(xua, SUA_IEI_ROUTE_CTX, conn->inst->route_ctx); xua_msg_add_u32(xua, SUA_IEI_DEST_REF, conn->remote_ref);