OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/logging.h" | 5 #include "base/logging.h" |
6 #include "net/socket/ssl_server_socket.h" | 6 #include "net/socket/ssl_server_socket.h" |
7 | 7 |
8 namespace net { | 8 namespace net { |
9 | 9 |
10 namespace { | 10 namespace { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 // TODO(bulach): implement. | 44 // TODO(bulach): implement. |
45 NOTIMPLEMENTED(); | 45 NOTIMPLEMENTED(); |
46 return false; | 46 return false; |
47 } | 47 } |
48 }; | 48 }; |
49 | 49 |
50 } // namespace | 50 } // namespace |
51 | 51 |
52 SSLServerSocket* CreateSSLServerSocket(Socket* socket, | 52 SSLServerSocket* CreateSSLServerSocket(Socket* socket, |
53 X509Certificate* certificate, | 53 X509Certificate* certificate, |
54 base::RSAPrivateKey* key, | 54 crypto::RSAPrivateKey* key, |
55 const SSLConfig& ssl_config) { | 55 const SSLConfig& ssl_config) { |
56 return new SSLServerSocketOpenSSL(); | 56 return new SSLServerSocketOpenSSL(); |
57 } | 57 } |
58 | 58 |
59 } // namespace net | 59 } // namespace net |
OLD | NEW |