BUG=webrtc:367395350 Change-Id: I3fd1551f974705ce6b10e2c757f4d406a520a2c1 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/370460 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Reviewed-by: Jonas Oreland <jonaso@webrtc.org> Commit-Queue: Philipp Hancke <phancke@meta.com> Cr-Commit-Position: refs/heads/main@{#43528}
20 lines
621 B
C++
20 lines
621 B
C++
/*
|
|
* Copyright 2017 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 "p2p/dtls/dtls_transport_internal.h"
|
|
|
|
namespace cricket {
|
|
|
|
DtlsTransportInternal::DtlsTransportInternal() = default;
|
|
|
|
DtlsTransportInternal::~DtlsTransportInternal() = default;
|
|
|
|
} // namespace cricket
|