OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_SPDY_SPDY_TEST_UTIL_COMMON_H_ | 5 #ifndef NET_SPDY_SPDY_TEST_UTIL_COMMON_H_ |
6 #define NET_SPDY_SPDY_TEST_UTIL_COMMON_H_ | 6 #define NET_SPDY_SPDY_TEST_UTIL_COMMON_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 const char* location); | 458 const char* location); |
459 | 459 |
460 SpdyFrame* ConstructInitialSpdyPushFrame(scoped_ptr<SpdyHeaderBlock> headers, | 460 SpdyFrame* ConstructInitialSpdyPushFrame(scoped_ptr<SpdyHeaderBlock> headers, |
461 int stream_id, | 461 int stream_id, |
462 int associated_stream_id); | 462 int associated_stream_id); |
463 | 463 |
464 SpdyFrame* ConstructSpdyPushHeaders(int stream_id, | 464 SpdyFrame* ConstructSpdyPushHeaders(int stream_id, |
465 const char* const extra_headers[], | 465 const char* const extra_headers[], |
466 int extra_header_count); | 466 int extra_header_count); |
467 | 467 |
| 468 // Construct a SPDY reply (HEADERS or SYN_REPLY, depending on protocol |
| 469 // version) carrying exactly the given headers, and the default priority |
| 470 // (or no priority, depending on protocl version). |
| 471 // The |headers| parameter variant is preferred. |
| 472 SpdyFrame* ConstructSpdyReply(int stream_id, const SpdyHeaderBlock& headers); |
| 473 |
468 // Constructs a standard SPDY SYN_REPLY frame to match the SPDY GET. | 474 // Constructs a standard SPDY SYN_REPLY frame to match the SPDY GET. |
469 // |extra_headers| are the extra header-value pairs, which typically | 475 // |extra_headers| are the extra header-value pairs, which typically |
470 // will vary the most between calls. | 476 // will vary the most between calls. |
471 // Returns a SpdyFrame. | 477 // Returns a SpdyFrame. |
472 SpdyFrame* ConstructSpdyGetSynReply(const char* const extra_headers[], | 478 SpdyFrame* ConstructSpdyGetSynReply(const char* const extra_headers[], |
473 int extra_header_count, | 479 int extra_header_count, |
474 int stream_id); | 480 int stream_id); |
475 | 481 |
476 // Constructs a standard SPDY SYN_REPLY frame to match the SPDY GET. | 482 // Constructs a standard SPDY SYN_REPLY frame to match the SPDY GET. |
477 // |extra_headers| are the extra header-value pairs, which typically | 483 // |extra_headers| are the extra header-value pairs, which typically |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 uint32 len, bool fin); | 531 uint32 len, bool fin); |
526 | 532 |
527 // Wraps |frame| in the payload of a data frame in stream |stream_id|. | 533 // Wraps |frame| in the payload of a data frame in stream |stream_id|. |
528 SpdyFrame* ConstructWrappedSpdyFrame(const scoped_ptr<SpdyFrame>& frame, | 534 SpdyFrame* ConstructWrappedSpdyFrame(const scoped_ptr<SpdyFrame>& frame, |
529 int stream_id); | 535 int stream_id); |
530 | 536 |
531 const SpdyHeaderInfo MakeSpdyHeader(SpdyFrameType type); | 537 const SpdyHeaderInfo MakeSpdyHeader(SpdyFrameType type); |
532 | 538 |
533 // For versions below SPDY4, adds the version HTTP/1.1 header. | 539 // For versions below SPDY4, adds the version HTTP/1.1 header. |
534 void MaybeAddVersionHeader(SpdyFrameWithNameValueBlockIR* frame_ir) const; | 540 void MaybeAddVersionHeader(SpdyFrameWithNameValueBlockIR* frame_ir) const; |
| 541 void MaybeAddVersionHeader(SpdyHeaderBlock* block) const; |
535 | 542 |
536 // Maps |priority| to SPDY version priority, and sets it on |frame_ir|. | 543 // Maps |priority| to SPDY version priority, and sets it on |frame_ir|. |
537 void SetPriority(RequestPriority priority, SpdySynStreamIR* frame_ir) const; | 544 void SetPriority(RequestPriority priority, SpdySynStreamIR* frame_ir) const; |
538 | 545 |
539 NextProto protocol() const { return protocol_; } | 546 NextProto protocol() const { return protocol_; } |
540 SpdyMajorVersion spdy_version() const { return spdy_version_; } | 547 SpdyMajorVersion spdy_version() const { return spdy_version_; } |
541 bool is_spdy2() const { return protocol_ < kProtoSPDY3; } | 548 bool is_spdy2() const { return protocol_ < kProtoSPDY3; } |
542 bool include_version_header() const { return protocol_ < kProtoSPDY4; } | 549 bool include_version_header() const { return protocol_ < kProtoSPDY4; } |
543 scoped_ptr<SpdyFramer> CreateFramer(bool compressed) const; | 550 scoped_ptr<SpdyFramer> CreateFramer(bool compressed) const; |
544 | 551 |
(...skipping 12 matching lines...) Expand all Loading... |
557 base::StringPiece url, | 564 base::StringPiece url, |
558 int64* content_length) const; | 565 int64* content_length) const; |
559 | 566 |
560 const NextProto protocol_; | 567 const NextProto protocol_; |
561 const SpdyMajorVersion spdy_version_; | 568 const SpdyMajorVersion spdy_version_; |
562 }; | 569 }; |
563 | 570 |
564 } // namespace net | 571 } // namespace net |
565 | 572 |
566 #endif // NET_SPDY_SPDY_TEST_UTIL_COMMON_H_ | 573 #endif // NET_SPDY_SPDY_TEST_UTIL_COMMON_H_ |
OLD | NEW |