• Home
  • Raw
  • Download

Lines Matching refs:sslver

1514 static CURLcode nss_init_sslver(SSLVersionRange *sslver,  in nss_init_sslver()  argument
1521 if(SSL_VersionRangeGetDefault(ssl_variant_stream, sslver) != SECSuccess) in nss_init_sslver()
1524 if(sslver->min < SSL_LIBRARY_VERSION_TLS_1_0) in nss_init_sslver()
1525 sslver->min = SSL_LIBRARY_VERSION_TLS_1_0; in nss_init_sslver()
1529 sslver->min = SSL_LIBRARY_VERSION_TLS_1_0; in nss_init_sslver()
1532 sslver->max = SSL_LIBRARY_VERSION_TLS_1_2; in nss_init_sslver()
1534 sslver->max = SSL_LIBRARY_VERSION_TLS_1_1; in nss_init_sslver()
1536 sslver->max = SSL_LIBRARY_VERSION_TLS_1_0; in nss_init_sslver()
1541 sslver->min = SSL_LIBRARY_VERSION_2; in nss_init_sslver()
1542 sslver->max = SSL_LIBRARY_VERSION_2; in nss_init_sslver()
1546 sslver->min = SSL_LIBRARY_VERSION_3_0; in nss_init_sslver()
1547 sslver->max = SSL_LIBRARY_VERSION_3_0; in nss_init_sslver()
1551 sslver->min = SSL_LIBRARY_VERSION_TLS_1_0; in nss_init_sslver()
1552 sslver->max = SSL_LIBRARY_VERSION_TLS_1_0; in nss_init_sslver()
1557 sslver->min = SSL_LIBRARY_VERSION_TLS_1_1; in nss_init_sslver()
1558 sslver->max = SSL_LIBRARY_VERSION_TLS_1_1; in nss_init_sslver()
1565 sslver->min = SSL_LIBRARY_VERSION_TLS_1_2; in nss_init_sslver()
1566 sslver->max = SSL_LIBRARY_VERSION_TLS_1_2; in nss_init_sslver()
1573 sslver->min = SSL_LIBRARY_VERSION_TLS_1_3; in nss_init_sslver()
1574 sslver->max = SSL_LIBRARY_VERSION_TLS_1_3; in nss_init_sslver()
1641 SSLVersionRange sslver = { in nss_setup_connect() local
1704 if(nss_init_sslver(&sslver, data, conn) != CURLE_OK) in nss_setup_connect()
1706 if(SSL_VersionRangeSet(model, &sslver) != SECSuccess) in nss_setup_connect()