|
|
|
@ -278,9 +278,26 @@ static Octstr *decode_encoded_string_value(int ret, ParseContext *context, unsig
|
|
|
|
|
} else if (ret2 != WSP_FIELD_VALUE_NUL_STRING) {
|
|
|
|
|
mms_warning(0, "mms_msg", NULL, "Faulty header value for %s! [ret=%d,ret2=%d]\n", hname,ret,ret2);
|
|
|
|
|
res = octstr_imm("");
|
|
|
|
|
} else
|
|
|
|
|
res = parse_get_nul_string(context);
|
|
|
|
|
|
|
|
|
|
} else { /* String may be RFC 2047 encoded */
|
|
|
|
|
int mib = UTF8_MIB_VAL;
|
|
|
|
|
Octstr *xs = parse_get_nul_string(context);
|
|
|
|
|
|
|
|
|
|
res = parse_rfc2047_text(xs, &mib);
|
|
|
|
|
octstr_destroy(xs);
|
|
|
|
|
|
|
|
|
|
if (mib != UTF8_MIB_VAL && mib != US_ASCII_MIB_VAL) { /* Convert to UTF-8 */
|
|
|
|
|
const char *charset = mibenum_to_charset(mib);
|
|
|
|
|
Octstr *xcharset = octstr_imm(charset);
|
|
|
|
|
Octstr *out = NULL;
|
|
|
|
|
|
|
|
|
|
if (charset_to_utf8(res, &out, xcharset) > 0 && out) {
|
|
|
|
|
octstr_destroy(res);
|
|
|
|
|
res = out;
|
|
|
|
|
} else
|
|
|
|
|
octstr_destroy(out);
|
|
|
|
|
out = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -701,7 +718,7 @@ static void mms_pack_well_known_field(Octstr *os, int field_type, Octstr *value)
|
|
|
|
|
int charset;
|
|
|
|
|
Octstr *xvalue = parse_rfc2047_text(value, &charset);
|
|
|
|
|
|
|
|
|
|
if (charset == US_ASCII_MIB_VAL)
|
|
|
|
|
if (charset == US_ASCII_MIB_VAL) /* Leave as text */
|
|
|
|
|
wsp_pack_text(os, xvalue);
|
|
|
|
|
else { /* Need to use the other encoding */
|
|
|
|
|
wsp_pack_integer_value(encoded, charset);
|
|
|
|
|