obj->base.expected_size=strlen(obj->boundary)+8;/* body's length will be part length(including boundary) + multipart end. 8 is for "\r\n--" and "--\r\n" */
obj->base.expected_size+=part->expected_size+strlen(obj->boundary)+4;/* add the separator length to the body length as each part start with a separator. 4 is for "--" and "\r\n" */