Ryan Keane | fdebe6c | 2019-09-06 14:12:51 -0700 | [diff] [blame] | 1 | // Copyright 2019 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "platform/api/tls_connection.h" |
| 6 | |
Ryan Keane | fdebe6c | 2019-09-06 14:12:51 -0700 | [diff] [blame] | 7 | namespace openscreen { |
Ryan Keane | fdebe6c | 2019-09-06 14:12:51 -0700 | [diff] [blame] | 8 | |
Yuri Wiitala | fb75b09 | 2019-11-14 14:13:18 -0800 | [diff] [blame] | 9 | TlsConnection::TlsConnection() = default; |
| 10 | TlsConnection::~TlsConnection() = default; |
Ryan Keane | fdebe6c | 2019-09-06 14:12:51 -0700 | [diff] [blame] | 11 | |
Abraham Corea Diaz | bffb5c2 | 2021-07-09 23:35:39 +0000 | [diff] [blame^] | 12 | TlsConnection::Client::~Client() = default; |
| 13 | |
Ryan Keane | fdebe6c | 2019-09-06 14:12:51 -0700 | [diff] [blame] | 14 | } // namespace openscreen |