OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef NET_SOCKET_SSL_SERVER_SOCKET_H_ | 5 #ifndef NET_SOCKET_SSL_SERVER_SOCKET_H_ |
6 #define NET_SOCKET_SSL_SERVER_SOCKET_H_ | 6 #define NET_SOCKET_SSL_SERVER_SOCKET_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "net/base/completion_callback.h" | 10 #include "net/base/completion_callback.h" |
11 #include "net/base/net_export.h" | 11 #include "net/base/net_export.h" |
12 #include "net/socket/ssl_socket.h" | 12 #include "net/socket/ssl_socket.h" |
13 #include "net/socket/stream_socket.h" | 13 #include "net/socket/stream_socket.h" |
14 | 14 |
15 namespace crypto { | 15 namespace crypto { |
16 class RSAPrivateKey; | 16 class RSAPrivateKey; |
17 } // namespace crypto | 17 } // namespace crypto |
18 | 18 |
19 namespace net { | 19 namespace net { |
20 | 20 |
21 struct SSLConfig; | 21 struct SSLConfig; |
22 class X509Certificate; | 22 class X509Certificate; |
23 | 23 |
24 class SSLServerSocket : public SSLSocket { | 24 class SSLServerSocket : public SSLSocket { |
25 public: | 25 public: |
26 virtual ~SSLServerSocket() {} | 26 ~SSLServerSocket() override {} |
27 | 27 |
28 // Perform the SSL server handshake, and notify the supplied callback | 28 // Perform the SSL server handshake, and notify the supplied callback |
29 // if the process completes asynchronously. If Disconnect is called before | 29 // if the process completes asynchronously. If Disconnect is called before |
30 // completion then the callback will be silently, as for other StreamSocket | 30 // completion then the callback will be silently, as for other StreamSocket |
31 // calls. | 31 // calls. |
32 virtual int Handshake(const CompletionCallback& callback) = 0; | 32 virtual int Handshake(const CompletionCallback& callback) = 0; |
33 }; | 33 }; |
34 | 34 |
35 // Configures the underlying SSL library for the use of SSL server sockets. | 35 // Configures the underlying SSL library for the use of SSL server sockets. |
36 // | 36 // |
(...skipping 18 matching lines...) Expand all Loading... |
55 // returned socket. | 55 // returned socket. |
56 NET_EXPORT scoped_ptr<SSLServerSocket> CreateSSLServerSocket( | 56 NET_EXPORT scoped_ptr<SSLServerSocket> CreateSSLServerSocket( |
57 scoped_ptr<StreamSocket> socket, | 57 scoped_ptr<StreamSocket> socket, |
58 X509Certificate* certificate, | 58 X509Certificate* certificate, |
59 crypto::RSAPrivateKey* key, | 59 crypto::RSAPrivateKey* key, |
60 const SSLConfig& ssl_config); | 60 const SSLConfig& ssl_config); |
61 | 61 |
62 } // namespace net | 62 } // namespace net |
63 | 63 |
64 #endif // NET_SOCKET_SSL_SERVER_SOCKET_H_ | 64 #endif // NET_SOCKET_SSL_SERVER_SOCKET_H_ |
OLD | NEW |