mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
96 lines
2.6 KiB
C++
96 lines
2.6 KiB
C++
|
// Copyright 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_dispatcher_peer.h"
|
||
|
|
||
|
#include "net/tools/quic/quic_dispatcher.h"
|
||
|
#include "net/tools/quic/quic_packet_writer_wrapper.h"
|
||
|
|
||
|
namespace net {
|
||
|
namespace test {
|
||
|
|
||
|
// static
|
||
|
void QuicDispatcherPeer::SetTimeWaitListManager(
|
||
|
QuicDispatcher* dispatcher,
|
||
|
QuicTimeWaitListManager* time_wait_list_manager) {
|
||
|
dispatcher->time_wait_list_manager_.reset(time_wait_list_manager);
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
void QuicDispatcherPeer::UseWriter(QuicDispatcher* dispatcher,
|
||
|
QuicPacketWriterWrapper* writer) {
|
||
|
writer->set_writer(dispatcher->writer_.release());
|
||
|
dispatcher->writer_.reset(writer);
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
QuicPacketWriter* QuicDispatcherPeer::GetWriter(QuicDispatcher* dispatcher) {
|
||
|
return dispatcher->writer_.get();
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
QuicCompressedCertsCache* QuicDispatcherPeer::GetCache(
|
||
|
QuicDispatcher* dispatcher) {
|
||
|
return dispatcher->compressed_certs_cache();
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
QuicConnectionHelperInterface* QuicDispatcherPeer::GetHelper(
|
||
|
QuicDispatcher* dispatcher) {
|
||
|
return dispatcher->helper_.get();
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
QuicAlarmFactory* QuicDispatcherPeer::GetAlarmFactory(
|
||
|
QuicDispatcher* dispatcher) {
|
||
|
return dispatcher->alarm_factory_.get();
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
QuicDispatcher::WriteBlockedList* QuicDispatcherPeer::GetWriteBlockedList(
|
||
|
QuicDispatcher* dispatcher) {
|
||
|
return &dispatcher->write_blocked_list_;
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
QuicErrorCode QuicDispatcherPeer::GetAndClearLastError(
|
||
|
QuicDispatcher* dispatcher) {
|
||
|
QuicErrorCode ret = dispatcher->last_error_;
|
||
|
dispatcher->last_error_ = QUIC_NO_ERROR;
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
QuicBufferedPacketStore* QuicDispatcherPeer::GetBufferedPackets(
|
||
|
QuicDispatcher* dispatcher) {
|
||
|
return &(dispatcher->buffered_packets_);
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
const QuicDispatcher::SessionMap& QuicDispatcherPeer::session_map(
|
||
|
QuicDispatcher* dispatcher) {
|
||
|
return dispatcher->session_map();
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
void QuicDispatcherPeer::set_new_sessions_allowed_per_event_loop(
|
||
|
QuicDispatcher* dispatcher,
|
||
|
size_t num_session_allowed) {
|
||
|
return dispatcher->set_new_sessions_allowed_per_event_loop(
|
||
|
num_session_allowed);
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
void QuicDispatcherPeer::SendPublicReset(
|
||
|
QuicDispatcher* dispatcher,
|
||
|
const QuicSocketAddress& server_address,
|
||
|
const QuicSocketAddress& client_address,
|
||
|
QuicConnectionId connection_id) {
|
||
|
dispatcher->time_wait_list_manager()->SendPublicReset(
|
||
|
server_address, client_address, connection_id);
|
||
|
}
|
||
|
|
||
|
} // namespace test
|
||
|
} // namespace net
|