blob: ed371a350707fc9a7e39c9d73c092bf597ec3da3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_BASE_CLIENT_SOCKET_FACTORY_H_
#define NET_BASE_CLIENT_SOCKET_FACTORY_H_
#include <string>
namespace net {
class AddressList;
class ClientSocket;
// An interface used to instantiate ClientSocket objects. Used to facilitate
// testing code with mock socket implementations.
class ClientSocketFactory {
public:
virtual ~ClientSocketFactory() {}
virtual ClientSocket* CreateTCPClientSocket(
const AddressList& addresses) = 0;
// protocol_version_mask is a bitmask that specifies which versions of the
// SSL protocol (SSL 2.0, SSL 3.0, and TLS 1.0) should be enabled. The bit
// flags are defined in net/base/ssl_client_socket.h.
virtual ClientSocket* CreateSSLClientSocket(
ClientSocket* transport_socket,
const std::string& hostname,
int protocol_version_mask) = 0;
// Returns the default ClientSocketFactory.
static ClientSocketFactory* GetDefaultFactory();
};
} // namespace net
#endif // NET_BASE_CLIENT_SOCKET_FACTORY_H_
|