mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

Only affects turn server. Refactored to wrap sockets with SSLAdapter after Accept, using the SSLAdapterFactory to hold needed configuration. Bug: webrtc:13065 Change-Id: I5df65aad5728d8d40d95b22db6398a573ec7a36f Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/235823 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/main@{#35258}
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
/*
|
|
* Copyright 2004 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "rtc_base/ssl_adapter.h"
|
|
|
|
#include "rtc_base/openssl_adapter.h"
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
namespace rtc {
|
|
|
|
std::unique_ptr<SSLAdapterFactory> SSLAdapterFactory::Create() {
|
|
return std::make_unique<OpenSSLAdapterFactory>();
|
|
}
|
|
|
|
SSLAdapter* SSLAdapter::Create(Socket* socket) {
|
|
return new OpenSSLAdapter(socket);
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool InitializeSSL() {
|
|
return OpenSSLAdapter::InitializeSSL();
|
|
}
|
|
|
|
bool CleanupSSL() {
|
|
return OpenSSLAdapter::CleanupSSL();
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
} // namespace rtc
|