OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsValidSNI
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/net/quic/crypto/
crypto_utils_test.cc
13
TEST(CryptoUtilsTest,
IsValidSNI
) {
15
EXPECT_FALSE(CryptoUtils::
IsValidSNI
("192.168.0.1"));
17
EXPECT_FALSE(CryptoUtils::
IsValidSNI
("somedomain"));
20
// EXPECT_FALSE(CryptoUtils::
IsValidSNI
("some_domain.com"));
23
EXPECT_FALSE(CryptoUtils::
IsValidSNI
(""));
26
EXPECT_TRUE(CryptoUtils::
IsValidSNI
("test.google.com"));
crypto_utils.h
45
static bool
IsValidSNI
(base::StringPiece sni);
49
// literals.
IsValidSNI
() should be called before calling NormalizeHostname().
crypto_utils.cc
48
bool CryptoUtils::
IsValidSNI
(StringPiece sni) {
quic_crypto_client_config.cc
248
if (CryptoUtils::
IsValidSNI
(server_hostname)) {
quic_crypto_server_config.cc
808
!CryptoUtils::
IsValidSNI
(info->sni)) {
[
all
...]
Completed in 49 milliseconds