blob: 8182c02ed6757aa6c086c172894c2b1e6bb46838 [file] [log] [blame]
Andreea Costinase45d54b2020-03-10 09:21:14 +01001// Copyright 2020 The Chromium OS 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 "system-proxy/curl_socket.h"
6
7#include <memory>
8#include <utility>
9
10namespace system_proxy {
11
12CurlSocket::CurlSocket(base::ScopedFD fd, ScopedCurlEasyhandle curl_easyhandle)
13 : arc_networkd::Socket(std::move(fd)),
14 curl_easyhandle_(std::move(curl_easyhandle)) {}
15
16CurlSocket::~CurlSocket() = default;
17
18} // namespace system_proxy