blob: 40b6111133b154226d188bc5e99b953949fe6a9c [file] [log] [blame]
renjietangfee2cc32019-04-05 11:32:07 -07001// Copyright 2013 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.
4
5#include "net/third_party/quiche/src/quic/core/http/quic_send_control_stream.h"
6
7#include "net/third_party/quiche/src/quic/core/http/quic_spdy_session.h"
8#include "net/third_party/quiche/src/quic/core/quic_utils.h"
9#include "net/third_party/quiche/src/quic/platform/api/quic_flag_utils.h"
10#include "net/third_party/quiche/src/quic/platform/api/quic_flags.h"
11
12namespace quic {
13
14QuicSendControlStream::QuicSendControlStream(QuicStreamId id,
15 QuicSpdySession* session)
16 : QuicStream(id, session, /*is_static = */ true, WRITE_UNIDIRECTIONAL),
17 settings_sent_(false) {}
18
19void QuicSendControlStream::OnStreamReset(const QuicRstStreamFrame& frame) {
20 // TODO(renjietang) Change the error code to H/3 specific
21 // HTTP_CLOSED_CRITICAL_STREAM.
22 session()->connection()->CloseConnection(
23 QUIC_INVALID_STREAM_ID, "Attempt to reset send control stream",
24 ConnectionCloseBehavior::SEND_CONNECTION_CLOSE_PACKET);
25}
26
27void QuicSendControlStream::SendSettingsFrame(const SettingsFrame& settings) {
28 DCHECK(!settings_sent_);
29 std::unique_ptr<char[]> buffer;
30 QuicByteCount frame_length =
31 encoder_.SerializeSettingsFrame(settings, &buffer);
32 WriteOrBufferData(QuicStringPiece(buffer.get(), frame_length),
33 /*fin = */ false, nullptr);
34 settings_sent_ = true;
35}
36
37} // namespace quic