summaryrefslogtreecommitdiffstats
path: root/net/socket/ssl_server_socket_openssl.cc
blob: 68c26fe4155c04fdada5bef20737686c2ab96950 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright (c) 2011 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.

#include "base/logging.h"
#include "net/socket/ssl_server_socket.h"

namespace net {

namespace {

class SSLServerSocketOpenSSL : public SSLServerSocket {
 public:
  virtual ~SSLServerSocketOpenSSL() {}

  // SSLServerSocket
  virtual int Accept(CompletionCallback* callback) {
    // TODO(bulach): implement.
    NOTIMPLEMENTED();
    return 0;
  }

  // Socket
  virtual int Read(IOBuffer* buf, int buf_len,
                   CompletionCallback* callback) {
    // TODO(bulach): implement.
    NOTIMPLEMENTED();
    return 0;
  }
  virtual int Write(IOBuffer* buf, int buf_len,
                    CompletionCallback* callback) {
    // TODO(bulach): implement.
    NOTIMPLEMENTED();
    return 0;
  }

  virtual bool SetReceiveBufferSize(int32 size) {
    // TODO(bulach): implement.
    NOTIMPLEMENTED();
    return false;
  }

  virtual bool SetSendBufferSize(int32 size) {
    // TODO(bulach): implement.
    NOTIMPLEMENTED();
    return false;
  }
};

}  // namespace

SSLServerSocket* CreateSSLServerSocket(Socket* socket,
                                       X509Certificate* certificate,
                                       crypto::RSAPrivateKey* key,
                                       const SSLConfig& ssl_config) {
  return new SSLServerSocketOpenSSL();
}

}  // namespace net