| // Copyright 2021 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "content/browser/direct_sockets/direct_udp_socket_impl.h" |
| |
| #include "content/browser/direct_sockets/direct_sockets_service_impl.h" |
| |
| namespace content { |
| |
| DirectUDPSocketImpl::DirectUDPSocketImpl( |
| network::mojom::NetworkContext* network_context, |
| mojo::PendingRemote<network::mojom::UDPSocketListener> listener) { |
| network_context->CreateUDPSocket(remote_.BindNewPipeAndPassReceiver(), |
| std::move(listener)); |
| } |
| |
| DirectUDPSocketImpl::~DirectUDPSocketImpl() = default; |
| |
| void DirectUDPSocketImpl::Connect(const net::IPEndPoint& remote_addr, |
| network::mojom::UDPSocketOptionsPtr options, |
| ConnectCallback callback) { |
| remote_->Connect(remote_addr, std::move(options), std::move(callback)); |
| } |
| |
| void DirectUDPSocketImpl::ReceiveMore(uint32_t num_additional_datagrams) { |
| remote_->ReceiveMore(num_additional_datagrams); |
| } |
| |
| void DirectUDPSocketImpl::Send(base::span<const uint8_t> data, |
| SendCallback callback) { |
| remote_->Send(std::move(data), DirectSocketsServiceImpl::TrafficAnnotation(), |
| std::move(callback)); |
| } |
| |
| void DirectUDPSocketImpl::Close() { |
| remote_->Close(); |
| } |
| |
| } // namespace content |