Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: net/spdy/spdy_protocol.h

Issue 352383002: Update SPDY4 settings ID to 16 bits (from 8). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Extract SpdyConstants::GetSettingSize() Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/spdy/spdy_framer_test.cc ('k') | net/spdy/spdy_protocol.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // This file contains some protocol structures for use with SPDY 2 and 3 5 // This file contains some protocol structures for use with SPDY 2 and 3
6 // The SPDY 2 spec can be found at: 6 // The SPDY 2 spec can be found at:
7 // http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft2 7 // http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft2
8 // The SPDY 3 spec can be found at: 8 // The SPDY 3 spec can be found at:
9 // http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft3 9 // http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft3
10 10
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 static size_t GetControlFrameHeaderSize(SpdyMajorVersion version); 504 static size_t GetControlFrameHeaderSize(SpdyMajorVersion version);
505 505
506 static size_t GetPrefixLength(SpdyFrameType type, SpdyMajorVersion version); 506 static size_t GetPrefixLength(SpdyFrameType type, SpdyMajorVersion version);
507 507
508 static size_t GetFrameMaximumSize(SpdyMajorVersion version); 508 static size_t GetFrameMaximumSize(SpdyMajorVersion version);
509 509
510 // Returns the size of a header block size field. Valid only for SPDY 510 // Returns the size of a header block size field. Valid only for SPDY
511 // versions <= 3. 511 // versions <= 3.
512 static size_t GetSizeOfSizeField(SpdyMajorVersion version); 512 static size_t GetSizeOfSizeField(SpdyMajorVersion version);
513 513
514 // Returns the size (in bytes) of a wire setting ID and value.
515 static size_t GetSettingSize(SpdyMajorVersion version);
516
514 static SpdyMajorVersion ParseMajorVersion(int version_number); 517 static SpdyMajorVersion ParseMajorVersion(int version_number);
515 518
516 static int SerializeMajorVersion(SpdyMajorVersion version); 519 static int SerializeMajorVersion(SpdyMajorVersion version);
517 520
518 static std::string GetVersionString(SpdyMajorVersion version); 521 static std::string GetVersionString(SpdyMajorVersion version);
519 }; 522 };
520 523
521 class SpdyFrame; 524 class SpdyFrame;
522 typedef SpdyFrame SpdySerializedFrame; 525 typedef SpdyFrame SpdySerializedFrame;
523 526
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 SpdyFrameVisitor() {} 1044 SpdyFrameVisitor() {}
1042 virtual ~SpdyFrameVisitor() {} 1045 virtual ~SpdyFrameVisitor() {}
1043 1046
1044 private: 1047 private:
1045 DISALLOW_COPY_AND_ASSIGN(SpdyFrameVisitor); 1048 DISALLOW_COPY_AND_ASSIGN(SpdyFrameVisitor);
1046 }; 1049 };
1047 1050
1048 } // namespace net 1051 } // namespace net
1049 1052
1050 #endif // NET_SPDY_SPDY_PROTOCOL_H_ 1053 #endif // NET_SPDY_SPDY_PROTOCOL_H_
OLDNEW
« no previous file with comments | « net/spdy/spdy_framer_test.cc ('k') | net/spdy/spdy_protocol.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698