summaryrefslogtreecommitdiff
path: root/chromium/net/tools/quic/quic_reliable_client_stream.cc
blob: 359fec4dd90b2814e7c0cdaf08cbbe014cf48301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (c) 2012 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/quic_reliable_client_stream.h"

using std::string;

namespace net {
namespace tools {

// Sends body data to the server and returns the number of bytes sent.
ssize_t QuicReliableClientStream::SendBody(const string& data, bool fin) {
  return WriteData(data, fin).bytes_consumed;
}

bool QuicReliableClientStream::OnStreamFrame(const QuicStreamFrame& frame) {
  if (!write_side_closed()) {
    DLOG(INFO) << "Got a response before the request was complete.  "
               << "Aborting request.";
    CloseWriteSide();
  }
  return ReliableQuicStream::OnStreamFrame(frame);
}

}  // namespace tools
}  // namespace net