Lines Matching defs:boundary
114 char *boundary; /* Boundary text (multipart downloads only) */
115 uint_t boundary_len; /* Length of boundary string */
1018 * headers. If so, get the boundary string.
1036 c_id->boundary = strdup(ptr2);
1037 if (c_id->boundary == NULL) {
1044 c_id->boundary_len = strlen(c_id->boundary);
1080 * http_process_part_headers - Read in part boundary and header lines for the
1098 * a boundary line as the next non-empty line. It then reads header lines
1135 * boundary of the transmission, there can be any number of
1149 /* Look for the boundary line. */
1169 /* Look for boundary line - '--<boundary text> */
1171 strncmp(&line[2], c_id->boundary, c_id->boundary_len) != 0) {
1172 /* No boundary line.... */
1177 /* Is this the end-of-parts boundary (ends with a trailing '--') */
2370 if (free_boundary && c_id->boundary) {
2371 free(c_id->boundary);
2372 c_id->boundary = NULL;