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

Side by Side Diff: net/socket/diff_serv_code_point.h

Issue 2508593002: net: move udp directory into socket (Closed)
Patch Set: revert sys/socket.h change Created 4 years, 1 month 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
« no previous file with comments | « net/socket/datagram_socket.h ('k') | net/socket/fuzzed_datagram_client_socket.h » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_UDP_DIFF_SERV_CODE_POINT_H_ 5 #ifndef NET_SOCKET_DIFF_SERV_CODE_POINT_H_
6 #define NET_UDP_DIFF_SERV_CODE_POINT_H_ 6 #define NET_SOCKET_DIFF_SERV_CODE_POINT_H_
7 7
8 namespace net { 8 namespace net {
9 9
10 // Differentiated Services Code Point. 10 // Differentiated Services Code Point.
11 // See http://tools.ietf.org/html/rfc2474 for details. 11 // See http://tools.ietf.org/html/rfc2474 for details.
12 enum DiffServCodePoint { 12 enum DiffServCodePoint {
13 DSCP_NO_CHANGE = -1, 13 DSCP_NO_CHANGE = -1,
14 DSCP_FIRST = DSCP_NO_CHANGE, 14 DSCP_FIRST = DSCP_NO_CHANGE,
15 DSCP_DEFAULT = 0, // Same as DSCP_CS0 15 DSCP_DEFAULT = 0, // Same as DSCP_CS0
16 DSCP_CS0 = 0, // The default 16 DSCP_CS0 = 0, // The default
(...skipping 15 matching lines...) Expand all
32 DSCP_AF43 = 38, // Video 32 DSCP_AF43 = 38, // Video
33 DSCP_CS5 = 40, // Video 33 DSCP_CS5 = 40, // Video
34 DSCP_EF = 46, // Voice 34 DSCP_EF = 46, // Voice
35 DSCP_CS6 = 48, // Voice 35 DSCP_CS6 = 48, // Voice
36 DSCP_CS7 = 56, // Control messages 36 DSCP_CS7 = 56, // Control messages
37 DSCP_LAST = DSCP_CS7 37 DSCP_LAST = DSCP_CS7
38 }; 38 };
39 39
40 } // namespace net 40 } // namespace net
41 41
42 #endif // NET_UDP_DIFF_SERV_CODE_POINT_H_ 42 #endif // NET_SOCKET_DIFF_SERV_CODE_POINT_H_
OLDNEW
« no previous file with comments | « net/socket/datagram_socket.h ('k') | net/socket/fuzzed_datagram_client_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698