Harald Welte has submitted this change and it was merged.

Change subject: constify ss7_instance arg of osmo_ss7_pointcode_print()
......................................................................


constify ss7_instance arg of osmo_ss7_pointcode_print()

Change-Id: I8c6b7188d004033e75e9c41f4a65c418d13a79c5
---
M include/osmocom/sigtran/osmo_ss7.h
M src/osmo_ss7.c
2 files changed, 5 insertions(+), 5 deletions(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/include/osmocom/sigtran/osmo_ss7.h 
b/include/osmocom/sigtran/osmo_ss7.h
index 967912a..a457709 100644
--- a/include/osmocom/sigtran/osmo_ss7.h
+++ b/include/osmocom/sigtran/osmo_ss7.h
@@ -23,8 +23,8 @@
 bool osmo_ss7_pc_is_local(struct osmo_ss7_instance *inst, uint32_t pc);
 int osmo_ss7_pointcode_parse(struct osmo_ss7_instance *inst, const char *str);
 int osmo_ss7_pointcode_parse_mask_or_len(struct osmo_ss7_instance *inst, const 
char *in);
-const char *osmo_ss7_pointcode_print(struct osmo_ss7_instance *inst, uint32_t 
pc);
-const char *osmo_ss7_pointcode_print2(struct osmo_ss7_instance *inst, uint32_t 
pc);
+const char *osmo_ss7_pointcode_print(const struct osmo_ss7_instance *inst, 
uint32_t pc);
+const char *osmo_ss7_pointcode_print2(const struct osmo_ss7_instance *inst, 
uint32_t pc);
 
 /* All known point-code formats have a length of or below 24 bit.
  * A point-code value exceeding that is used to indicate an unset PC. */
diff --git a/src/osmo_ss7.c b/src/osmo_ss7.c
index f82f952..7b0b0e4 100644
--- a/src/osmo_ss7.c
+++ b/src/osmo_ss7.c
@@ -245,7 +245,7 @@
        return -EINVAL;
 }
 
-const char *_osmo_ss7_pointcode_print(char *buf, size_t len, struct 
osmo_ss7_instance *inst, uint32_t pc)
+const char *_osmo_ss7_pointcode_print(char *buf, size_t len, const struct 
osmo_ss7_instance *inst, uint32_t pc)
 {
        const struct osmo_ss7_pc_fmt *pc_fmt;
        unsigned int num_comp_exp;
@@ -269,7 +269,7 @@
 
 /* print a pointcode according to the structure configured for this
  * ss7_instance */
-const char *osmo_ss7_pointcode_print(struct osmo_ss7_instance *inst, uint32_t 
pc)
+const char *osmo_ss7_pointcode_print(const struct osmo_ss7_instance *inst, 
uint32_t pc)
 {
        static char buf[MAX_PC_STR_LEN];
        return _osmo_ss7_pointcode_print(buf, sizeof(buf), inst, pc);
@@ -277,7 +277,7 @@
 
 /* same as osmo_ss7_pointcode_print() but using a separate buffer, useful for 
multiple point codes in the
  * same LOGP/printf. */
-const char *osmo_ss7_pointcode_print2(struct osmo_ss7_instance *inst, uint32_t 
pc)
+const char *osmo_ss7_pointcode_print2(const struct osmo_ss7_instance *inst, 
uint32_t pc)
 {
        static char buf[MAX_PC_STR_LEN];
        return _osmo_ss7_pointcode_print(buf, sizeof(buf), inst, pc);

-- 
To view, visit https://gerrit.osmocom.org/3361
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I8c6b7188d004033e75e9c41f4a65c418d13a79c5
Gerrit-PatchSet: 3
Gerrit-Project: libosmo-sccp
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <nhofm...@sysmocom.de>
Gerrit-Reviewer: Harald Welte <lafo...@gnumonks.org>
Gerrit-Reviewer: Jenkins Builder

Reply via email to