mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
36 lines
963 B
C++
36 lines
963 B
C++
// Copyright (c) 2013 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 "net/tools/quic/test_tools/quic_client_peer.h"
|
|
|
|
#include "net/tools/quic/quic_client.h"
|
|
|
|
namespace net {
|
|
namespace test {
|
|
|
|
// static
|
|
bool QuicClientPeer::CreateUDPSocketAndBind(QuicClient* client) {
|
|
return client->network_helper()->CreateUDPSocketAndBind(
|
|
client->server_address(), client->bind_to_address(),
|
|
client->local_port());
|
|
}
|
|
|
|
// static
|
|
void QuicClientPeer::CleanUpUDPSocket(QuicClient* client, int fd) {
|
|
client->epoll_network_helper()->CleanUpUDPSocket(fd);
|
|
}
|
|
|
|
// static
|
|
void QuicClientPeer::SetClientPort(QuicClient* client, int port) {
|
|
client->epoll_network_helper()->SetClientPort(port);
|
|
}
|
|
|
|
// static
|
|
void QuicClientPeer::SetWriter(QuicClient* client, QuicPacketWriter* writer) {
|
|
client->set_writer(writer);
|
|
}
|
|
|
|
} // namespace test
|
|
} // namespace net
|