HomeSort by relevance Sort by last modified time
    Searched defs:sni (Results 1 - 4 of 4) sorted by null

  /external/chromium/net/test/
openssl_helper.cc 56 bool sni = false, sni_good = false, snap_start = false; local
65 if (strcmp(argv[i], "sni") == 0) {
66 // Require SNI
67 sni = true;
124 if (sni) {
223 if (sni && !sni_good) {
224 fprintf(stderr, "SNI failed\n");
  /external/chromium_org/net/test/
openssl_helper.cc 56 bool sni = false, sni_good = false, snap_start = false; local
65 if (strcmp(argv[i], "sni") == 0) {
66 // Require SNI
67 sni = true;
124 if (sni) {
223 if (sni && !sni_good) {
224 fprintf(stderr, "SNI failed\n");
  /external/chromium_org/net/quic/crypto/
crypto_handshake.h 170 // Normalized SNI: converted to lower case and trailing '.' removed.
171 std::string sni; member in struct:net::QuicCryptoNegotiatedParameters
crypto_server_config.cc 300 StringPiece sni; member in struct:net::ClientHelloInfo
406 if (!info.sni.empty()) {
407 scoped_ptr<char[]> sni_tmp(new char[info.sni.length() + 1]);
408 memcpy(sni_tmp.get(), info.sni.data(), info.sni.length());
409 sni_tmp[info.sni.length()] = 0;
410 params->sni = CryptoUtils::NormalizeHostname(sni_tmp.get());
618 if (client_hello.GetStringPiece(kSNI, &info->sni) &&
619 !CryptoUtils::IsValidSNI(info->sni)) {
620 *error_details = "Invalid SNI name"
    [all...]

Completed in 1497 milliseconds