Lines Matching defs:value
214 const char *name, const char *value)
227 if (value != NULL) {
230 if (BIO_puts(rctx->mem, value) <= 0)
313 * and we assume we got a correct value if req_len > 0.
354 if (!OSSL_HTTP_REQ_CTX_add1_header(rctx, hdr->name, hdr->value))
519 char *buf, *key, *value, *line_end = NULL;
683 value = strchr(key, ':');
684 if (value != NULL) {
685 *(value++) = '\0';
686 while (ossl_isspace(*value))
687 value++;
688 line_end = strchr(value, '\r');
690 line_end = strchr(value, '\n');
694 if (value != NULL && line_end != NULL) {
697 rctx->redirection_url = value;
702 if (OPENSSL_strcasecmp(rctx->expected_ct, value) != 0) {
705 rctx->expected_ct, value);
713 if (OPENSSL_strcasecmp(value, "keep-alive") == 0)
715 else if (OPENSSL_strcasecmp(value, "close") == 0)
718 resp_len = (size_t)strtoul(value, &line_end, 10);
719 if (line_end == value || *line_end != '\0') {
722 "input=%s", value);