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

  /external/chromium_org/net/test/spawned_test_server/
base_test_server.cc 30 std::string GetHostname(BaseTestServer::Type type,
31 const BaseTestServer::SSLOptions& options) {
32 if (BaseTestServer::UsingSSL(type) &&
34 BaseTestServer::SSLOptions::CERT_MISMATCHED_NAME) {
40 return BaseTestServer::kLocalhost;
58 if (key_exchange & BaseTestServer::SSLOptions::KEY_EXCHANGE_RSA)
60 if (key_exchange & BaseTestServer::SSLOptions::KEY_EXCHANGE_DHE_RSA)
65 if (cipher & BaseTestServer::SSLOptions::BULK_CIPHER_RC4)
67 if (cipher & BaseTestServer::SSLOptions::BULK_CIPHER_AES128)
69 if (cipher & BaseTestServer::SSLOptions::BULK_CIPHER_AES256
    [all...]
base_test_server.h 30 class BaseTestServer {
217 BaseTestServer(Type type, const std::string& host);
220 BaseTestServer(Type type, const SSLOptions& ssl_options);
246 return type == BaseTestServer::TYPE_HTTPS ||
247 type == BaseTestServer::TYPE_WSS;
257 virtual ~BaseTestServer();
327 DISALLOW_COPY_AND_ASSIGN(BaseTestServer);

Completed in 299 milliseconds