| 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 #include "net/spdy/buffered_spdy_framer.h" | 5 #include "net/spdy/buffered_spdy_framer.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 | 8 |
| 9 namespace net { | 9 namespace net { |
| 10 | 10 |
| 11 SpdyMajorVersion NextProtoToSpdyMajorVersion(NextProto next_proto) { | 11 SpdyMajorVersion NextProtoToSpdyMajorVersion(NextProto next_proto) { |
| 12 switch (next_proto) { | 12 switch (next_proto) { |
| 13 case kProtoDeprecatedSPDY2: | 13 case kProtoDeprecatedSPDY2: |
| 14 return SPDY2; | 14 return SPDY2; |
| 15 case kProtoSPDY3: | 15 case kProtoSPDY3: |
| 16 case kProtoSPDY31: | 16 case kProtoSPDY31: |
| 17 return SPDY3; | 17 return SPDY3; |
| 18 case kProtoSPDY4_14: | 18 case kProtoSPDY4_14: |
| 19 case kProtoSPDY4_15: | 19 case kProtoSPDY4_15: |
| 20 case kProtoSPDY4: |
| 20 return SPDY4; | 21 return SPDY4; |
| 21 case kProtoUnknown: | 22 case kProtoUnknown: |
| 22 case kProtoHTTP11: | 23 case kProtoHTTP11: |
| 23 case kProtoQUIC1SPDY3: | 24 case kProtoQUIC1SPDY3: |
| 24 break; | 25 break; |
| 25 } | 26 } |
| 26 NOTREACHED(); | 27 NOTREACHED(); |
| 27 return SPDY2; | 28 return SPDY2; |
| 28 } | 29 } |
| 29 | 30 |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 | 404 |
| 404 void BufferedSpdyFramer::InitHeaderStreaming(SpdyStreamId stream_id) { | 405 void BufferedSpdyFramer::InitHeaderStreaming(SpdyStreamId stream_id) { |
| 405 memset(header_buffer_, 0, kHeaderBufferSize); | 406 memset(header_buffer_, 0, kHeaderBufferSize); |
| 406 header_buffer_used_ = 0; | 407 header_buffer_used_ = 0; |
| 407 header_buffer_valid_ = true; | 408 header_buffer_valid_ = true; |
| 408 header_stream_id_ = stream_id; | 409 header_stream_id_ = stream_id; |
| 409 DCHECK_NE(header_stream_id_, SpdyFramer::kInvalidStream); | 410 DCHECK_NE(header_stream_id_, SpdyFramer::kInvalidStream); |
| 410 } | 411 } |
| 411 | 412 |
| 412 } // namespace net | 413 } // namespace net |
| OLD | NEW |