aboutsummaryrefslogtreecommitdiffstats
path: root/src/sccp_sap.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2023-02-18 02:37:43 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2023-02-22 16:02:51 +0100
commitf9b0746d7dc73a1363a6c00ed89dc566b8dc322b (patch)
tree0f5370f8e4c960374fa3d5196e7c38138d813ca5 /src/sccp_sap.c
parent6e8241356b832d6d45a4d5051fb1397701e59071 (diff)
fixup for: add osmo_scu_prim_name_c() / _buf()
I would like to tweak the names for the recently added functions, so that they are more clear -- quickly before we release it or anyone uses these. Depends: libosmocore I9f43428af654a5674ac3035fe4db1394aac7a7af Related: I4c1998fd7fee7282d107846dae2cff4b5ceb3a7b Change-Id: If381f537ab91af1feef7f0e51921217f27e18e6a
Diffstat (limited to 'src/sccp_sap.c')
-rw-r--r--src/sccp_sap.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/sccp_sap.c b/src/sccp_sap.c
index c0a42c6..51237ad 100644
--- a/src/sccp_sap.c
+++ b/src/sccp_sap.c
@@ -25,7 +25,7 @@
#include <osmocom/sigtran/sccp_sap.h>
-const struct value_string osmo_scu_prim_names[] = {
+const struct value_string osmo_scu_prim_type_names[] = {
{ OSMO_SCU_PRIM_N_CONNECT, "N-CONNECT" },
{ OSMO_SCU_PRIM_N_DATA, "N-DATA" },
{ OSMO_SCU_PRIM_N_EXPEDITED_DATA, "N-EXPEDITED-DATA" },
@@ -45,11 +45,11 @@ static char prim_name_buf[128];
char *osmo_scu_prim_name(const struct osmo_prim_hdr *oph)
{
- osmo_scu_prim_name_buf(prim_name_buf, sizeof(prim_name_buf), oph);
+ osmo_scu_prim_hdr_name_buf(prim_name_buf, sizeof(prim_name_buf), oph);
return prim_name_buf;
}
-int osmo_scu_prim_name_buf(char *buf, size_t buflen, const struct osmo_prim_hdr *oph)
+int osmo_scu_prim_hdr_name_buf(char *buf, size_t buflen, const struct osmo_prim_hdr *oph)
{
struct osmo_strbuf sb = { .buf = buf, .len = buflen };
@@ -59,14 +59,14 @@ int osmo_scu_prim_name_buf(char *buf, size_t buflen, const struct osmo_prim_hdr
}
OSMO_STRBUF_PRINTF(sb, "%s.%s",
- get_value_string(osmo_scu_prim_names, oph->primitive),
- get_value_string(osmo_prim_op_names, oph->operation));
+ osmo_scu_prim_type_name(oph->primitive),
+ osmo_prim_operation_name(oph->operation));
return sb.chars_needed;
}
-char *osmo_scu_prim_name_c(void *ctx, const struct osmo_prim_hdr *oph)
+char *osmo_scu_prim_hdr_name_c(void *ctx, const struct osmo_prim_hdr *oph)
{
- OSMO_NAME_C_IMPL(ctx, 32, "ERROR", osmo_scu_prim_name_buf, oph)
+ OSMO_NAME_C_IMPL(ctx, 32, "ERROR", osmo_scu_prim_hdr_name_buf, oph)
}
#include <osmocom/sigtran/sigtran_sap.h>