OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_TOOLS_QUIC_QUIC_SPDY_SERVER_STREAM_H_ | 5 #ifndef NET_TOOLS_QUIC_QUIC_SPDY_SERVER_STREAM_H_ |
6 #define NET_TOOLS_QUIC_QUIC_SPDY_SERVER_STREAM_H_ | 6 #define NET_TOOLS_QUIC_QUIC_SPDY_SERVER_STREAM_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "net/quic/quic_data_stream.h" | 11 #include "net/quic/quic_data_stream.h" |
12 #include "net/quic/quic_protocol.h" | 12 #include "net/quic/quic_protocol.h" |
13 #include "net/spdy/spdy_framer.h" | 13 #include "net/spdy/spdy_framer.h" |
14 | 14 |
15 namespace net { | 15 namespace net { |
16 | 16 |
17 class QuicSession; | 17 class QuicSpdySession; |
18 | 18 |
19 namespace tools { | 19 namespace tools { |
20 | 20 |
21 namespace test { | 21 namespace test { |
22 class QuicSpdyServerStreamPeer; | 22 class QuicSpdyServerStreamPeer; |
23 } // namespace test | 23 } // namespace test |
24 | 24 |
25 // All this does right now is aggregate data, and on fin, send an HTTP | 25 // All this does right now is aggregate data, and on fin, send an HTTP |
26 // response. | 26 // response. |
27 class QuicSpdyServerStream : public QuicDataStream { | 27 class QuicSpdyServerStream : public QuicDataStream { |
28 public: | 28 public: |
29 QuicSpdyServerStream(QuicStreamId id, QuicSession* session); | 29 QuicSpdyServerStream(QuicStreamId id, QuicSpdySession* session); |
30 ~QuicSpdyServerStream() override; | 30 ~QuicSpdyServerStream() override; |
31 | 31 |
32 // ReliableQuicStream implementation called by the session when there's | 32 // ReliableQuicStream implementation called by the session when there's |
33 // data for us. | 33 // data for us. |
34 uint32 ProcessData(const char* data, uint32 data_len) override; | 34 uint32 ProcessData(const char* data, uint32 data_len) override; |
35 void OnFinRead() override; | 35 void OnFinRead() override; |
36 | 36 |
37 protected: | 37 protected: |
38 // Sends a basic 200 response using SendHeaders for the headers and WriteData | 38 // Sends a basic 200 response using SendHeaders for the headers and WriteData |
39 // for the body. | 39 // for the body. |
(...skipping 23 matching lines...) Expand all Loading... |
63 int content_length_; | 63 int content_length_; |
64 std::string body_; | 64 std::string body_; |
65 | 65 |
66 DISALLOW_COPY_AND_ASSIGN(QuicSpdyServerStream); | 66 DISALLOW_COPY_AND_ASSIGN(QuicSpdyServerStream); |
67 }; | 67 }; |
68 | 68 |
69 } // namespace tools | 69 } // namespace tools |
70 } // namespace net | 70 } // namespace net |
71 | 71 |
72 #endif // NET_TOOLS_QUIC_QUIC_SPDY_SERVER_STREAM_H_ | 72 #endif // NET_TOOLS_QUIC_QUIC_SPDY_SERVER_STREAM_H_ |
OLD | NEW |