pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-sigtran/+/40553?usp=email )
Change subject: route: Print priority in osmo_ss7_route_name() ......................................................................
route: Print priority in osmo_ss7_route_name()
Change-Id: Ib9a6ae95562a40eb6c03bbc81ddabf2694e4efa6 --- M src/ss7_route.c 1 file changed, 3 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-sigtran refs/changes/53/40553/1
diff --git a/src/ss7_route.c b/src/ss7_route.c index e71b543..e40f1bc 100644 --- a/src/ss7_route.c +++ b/src/ss7_route.c @@ -317,9 +317,10 @@ goto out; \ } while (0)
- APPEND("pc=%u=%s mask=0x%x=%s", + APPEND("pc=%u=%s mask=0x%x=%s prio=%u", rt->cfg.pc, osmo_ss7_pointcode_print_buf(pc_str, sizeof(pc_str), inst, rt->cfg.pc), - rt->cfg.mask, osmo_ss7_pointcode_print_buf(mask_str, sizeof(mask_str), inst, rt->cfg.mask)); + rt->cfg.mask, osmo_ss7_pointcode_print_buf(mask_str, sizeof(mask_str), inst, rt->cfg.mask), + rt->cfg.priority);
if (rt->cfg.dyn_allocated) APPEND(" dyn");