Index: net/socket/client_socket_factory.cc |
=================================================================== |
--- net/socket/client_socket_factory.cc (revision 80449) |
+++ net/socket/client_socket_factory.cc (working copy) |
@@ -8,6 +8,7 @@ |
#include "build/build_config.h" |
#include "net/base/cert_database.h" |
#include "net/socket/client_socket_handle.h" |
+#include "net/socket/sctp_client_socket.h" |
#if defined(OS_WIN) |
#include "net/socket/ssl_client_socket_nss.h" |
#include "net/socket/ssl_client_socket_win.h" |
@@ -52,6 +53,13 @@ |
return new TCPClientSocket(addresses, net_log, source); |
} |
+ virtual ClientSocket* CreateSCTPClientSocket( |
+ const AddressList& addresses, |
+ NetLog* net_log, |
Mike Belshe
2011/04/06 18:32:53
Hopefully we get agreement to rename this and then
|
+ const NetLog::Source& source) { |
+ return new SCTPClientSocket(addresses, net_log, source); |
+ } |
+ |
virtual SSLClientSocket* CreateSSLClientSocket( |
ClientSocketHandle* transport_socket, |
const HostPortPair& host_and_port, |