Home
last modified time | relevance | path

Searched refs:line_end (Results 1 – 2 of 2) sorted by relevance

/openssl-master/apps/lib/
A Dhttp_server.c421 char *key, *value, *line_end = NULL; in http_server_get_asn1_req() local
444 line_end = strchr(value, '\r'); in http_server_get_asn1_req()
445 if (line_end == NULL) { in http_server_get_asn1_req()
446 line_end = strchr(value, '\n'); in http_server_get_asn1_req()
447 if (line_end == NULL) { in http_server_get_asn1_req()
454 *line_end = '\0'; in http_server_get_asn1_req()
/openssl-master/crypto/http/
A Dhttp_client.c477 char *key, *value, *line_end = NULL; in OSSL_HTTP_REQ_CTX_nbio() local
637 line_end = strchr(value, '\r'); in OSSL_HTTP_REQ_CTX_nbio()
638 if (line_end == NULL) in OSSL_HTTP_REQ_CTX_nbio()
639 line_end = strchr(value, '\n'); in OSSL_HTTP_REQ_CTX_nbio()
640 if (line_end != NULL) in OSSL_HTTP_REQ_CTX_nbio()
641 *line_end = '\0'; in OSSL_HTTP_REQ_CTX_nbio()
643 if (value != NULL && line_end != NULL) { in OSSL_HTTP_REQ_CTX_nbio()
667 resp_len = (size_t)strtoul(value, &line_end, 10); in OSSL_HTTP_REQ_CTX_nbio()
668 if (line_end == value || *line_end != '\0') { in OSSL_HTTP_REQ_CTX_nbio()

Completed in 6 milliseconds