} else if (hp.name.equalsIgnoreCase(Const.S_CONTENT_TYPE)) { // Content-Type
for (Bs params: Util.splitTrim(hp.value, ';')) {
Bs[] kv = Util.parseKeyValue(params);
if (kv[0].equalsIgnoreCase(Const.S_BOUNDARY)) {
Buf border = new Buf();
border.appendAll(
Const.L_HYP2
, kv[1]
, Const.L_HYP2);
multipartFinalBorder = border.toBs();
}