Searched defs:BaseTestServer (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/net/test/spawned_test_server/
H A Dbase_test_server.cc30 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
169 BaseTestServer::BaseTestServer(Type type, const std::string& host) function in class:net::BaseTestServer
177 BaseTestServer::BaseTestServer(Type type, const SSLOptions& ssl_options) function in class:net::BaseTestServer
[all...]
H A Dbase_test_server.h30 class BaseTestServer { class in namespace:net
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 127 milliseconds