Forráskód Böngészése

ims_charging: fix wrong default User-Equipment-Info-Type AVP format

- fix User-Equipment-Info-Type AVP format
  According to the RFC 8506 it should be like this: The 48-bit Media Access
  Control (MAC) address is formatted as described in Section 3.21 of [RFC3580]
- use strlen instead of sizeof

(cherry picked from commit 1a8f54147063560f6016634152b17293394b8497)
(cherry picked from commit d51a3c4393b345b783adccf8a0e960274e11afb2)
Henning Westerholt 5 éve
szülő
commit
78cc2c04fc
1 módosított fájl, 2 hozzáadás és 3 törlés
  1. 2 3
      src/modules/ims_charging/ims_ro.c

+ 2 - 3
src/modules/ims_charging/ims_ro.c

@@ -1564,9 +1564,8 @@ static int get_mac_avp_value(struct sip_msg *msg, str *value) {
 
     pv_parse_spec2(&mac_avp_name_str, &avp_spec, 1);
     if (pv_get_spec_value(msg, &avp_spec, &val) != 0 || val.rs.len == 0) {
-
-        value->s = "00:00:00:00:00:00";
-        value->len = sizeof ("00:00:00:00:00:00") - 1;
+        value->s = "00-00-00-00-00-00";
+        value->len = strlen(value->s);
         return -1;
     }