root/net/socket/ssl_server_socket_openssl.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. EnableSSLServerSockets
  2. CreateSSLServerSocket

// Copyright (c) 2012 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"

// TODO(bulach): Provide simple stubs for EnableSSLServerSockets and
// CreateSSLServerSocket so that when building for OpenSSL rather than NSS,
// so that the code using SSL server sockets can be compiled and disabled
// programatically rather than requiring to be carved out from the compile.

namespace net {

void EnableSSLServerSockets() {
  NOTIMPLEMENTED();
}

scoped_ptr<SSLServerSocket> CreateSSLServerSocket(
    scoped_ptr<StreamSocket> socket,
    X509Certificate* certificate,
    crypto::RSAPrivateKey* key,
    const SSLConfig& ssl_config) {
  NOTIMPLEMENTED();
  return scoped_ptr<SSLServerSocket>();
}

}  // namespace net

/* [<][>][^][v][top][bottom][index][help] */