Lines Matching refs:tls
149 if (!http || !http->tls || !http->tls->remoteCert || !credentials) in httpCopyCredentials()
158 …httpAddCredential(*credentials, http->tls->remoteCert->pbCertEncoded, http->tls->remoteCert->cbCer… in httpCopyCredentials()
691 if (http->tls) in _httpTLSPending()
692 return (http->tls->readBufferUsed); in _httpTLSPending()
708 _http_sspi_t *sspi = http->tls; /* SSPI data */ in _httpTLSRead()
946 if ((http->tls = http_sspi_alloc()) == NULL) in _httpTLSStart()
1023 _http_sspi_t *sspi = http->tls; /* SSPI data */ in _httpTLSStop()
1114 http->tls = NULL; in _httpTLSStop()
1127 _http_sspi_t *sspi = http->tls; /* SSPI data */ in _httpTLSWrite()
1260 http->tls = http_sspi_alloc();
1262 if (!http->tls)
1273 if (!_sspiGetCredentials(http->tls, L"ClientContainer",
1276 _sspiFree(http->tls);
1277 http->tls = NULL;
1288 _sspiSetAllowsAnyRoot(http->tls, TRUE);
1289 _sspiSetAllowsExpiredCerts(http->tls, TRUE);
1291 if (!_sspiConnect(http->tls, hostname))
1293 _sspiFree(http->tls);
1294 http->tls = NULL;
1329 _http_sspi_t *sspi = http->tls; /* SSPI data */ in http_sspi_client()
1363 …if (!http_sspi_make_credentials(http->tls, L"ClientContainer", common_name, _HTTP_MODE_CLIENT, 10)) in http_sspi_client()
1684 _http_sspi_t *sspi = http->tls; /* SSPI data */ in http_sspi_find_credentials()
2079 _http_sspi_t *sspi = http->tls; /* I - SSPI data */ in http_sspi_server()
2112 …if (!http_sspi_make_credentials(http->tls, L"ServerContainer", common_name, _HTTP_MODE_SERVER, 10)) in http_sspi_server()