summaryrefslogtreecommitdiffstats
path: root/net/flip/flip_bitmasks.h
blob: 3123da79788d40f893dd8c880a0e538e65a98f8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef NET_FLIP_FLIP_BITMASKS_H_
#define NET_FLIP_FLIP_BITMASKS_H_

namespace flip {

const int kStreamIdMask = 0x7fffffff;  // StreamId mask from the FlipHeader
const int kControlFlagMask = 0x8000;   // Control flag mask from the FlipHeader
const int kPriorityMask = 0xc0;        // Priority mask from the SYN_FRAME
const int kLengthMask = 0xffffff;      // Mask the lower 24 bits.

}  // flip

#endif  // NET_FLIP_FLIP_BITMASKS_H_