mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-26 04:27:25 +00:00
let ~ signify that multipart content will contain headers
This commit is contained in:
parent
b36d015f09
commit
3548168d8f
@ -1527,7 +1527,11 @@ char *sofia_glue_get_multipart(switch_core_session_t *session, const char *prefi
|
|||||||
|
|
||||||
if (!strncasecmp(name, prefix, strlen(prefix))) {
|
if (!strncasecmp(name, prefix, strlen(prefix))) {
|
||||||
const char *hname = name + strlen(prefix);
|
const char *hname = name + strlen(prefix);
|
||||||
stream.write_function(&stream, "--%s\nContent-Type: %s\nContent-Length: %d\n\n%s\n", boundary, hname, strlen(value) + 1, value);
|
if (*value == '~') {
|
||||||
|
stream.write_function(&stream, "--%s\nContent-Type: %s\nContent-Length: %d\n%s\n", boundary, hname, strlen(value), value + 1);
|
||||||
|
} else {
|
||||||
|
stream.write_function(&stream, "--%s\nContent-Type: %s\nContent-Length: %d\n\n%s\n", boundary, hname, strlen(value) + 1, value);
|
||||||
|
}
|
||||||
x++;
|
x++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user