| // Copyright 2015 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_SOCKET_DIFF_SERV_CODE_POINT_H_ |
| #define NET_SOCKET_DIFF_SERV_CODE_POINT_H_ |
| // Differentiated Services Code Point. |
| // See http://tools.ietf.org/html/rfc2474 for details. |
| DSCP_FIRST = DSCP_NO_CHANGE, |
| DSCP_DEFAULT = 0, // Same as DSCP_CS0 |
| DSCP_CS0 = 0, // The default |
| DSCP_CS1 = 8, // Bulk/background traffic |
| DSCP_CS7 = 56, // Control messages |
| #endif // NET_SOCKET_DIFF_SERV_CODE_POINT_H_ |