1 // Copyright 2014 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.
5 #include "net/tools/quic/test_tools/simple_client.h"
11 void SimpleClient::WaitForResponse() {
12 WaitForResponseForMs(-1);
15 // Waits for some data or response from the server.
16 void SimpleClient::WaitForInitialResponse() {
17 WaitForInitialResponseForMs(-1);
20 int SimpleClient::ResetSocket() {
21 LOG(FATAL
) << "SimpleClient::ResetSocket is not implemented";
25 int SimpleClient::HalfClose() {
26 LOG(FATAL
) << "SimpleClient::HalfClose is not implemented";
30 int SimpleClient::response_header_size() const { return 0; }
32 int64
SimpleClient::response_body_size() const { return 0; }