fune/third_party/libwebrtc/rtc_base/ssl_adapter.cc
Michael Froman 985de0cc03 Bug 1766646 - Vendor libwebrtc from ac9a288274
Upstream commit: https://webrtc.googlesource.com/src/+/ac9a28827402346702fc97442ffaf3e4e3618fe4
    Disable SSLAdapter methods Listen and Accept

    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}
2022-08-30 10:40:30 -04:00

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