Convert ARRAYSIZE_UNSAFE -> arraysize in base/.
[chromium-blink-merge.git] / net / base / net_util.h
blob72ac169a24c1caa36fe371d519bc7f061b0b2109
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
3 // found in the LICENSE file.
5 #ifndef NET_BASE_NET_UTIL_H_
6 #define NET_BASE_NET_UTIL_H_
8 #include "build/build_config.h"
10 #if defined(OS_WIN)
11 #include <windows.h>
12 #include <ws2tcpip.h>
13 #elif defined(OS_POSIX)
14 #include <sys/types.h>
15 #include <sys/socket.h>
16 #endif
18 #include <string>
19 #include <vector>
21 #include "base/basictypes.h"
22 #include "base/strings/string16.h"
23 #include "base/strings/utf_offset_string_conversions.h"
24 #include "net/base/address_family.h"
25 #include "net/base/escape.h"
26 #include "net/base/net_export.h"
27 #include "net/base/network_change_notifier.h"
29 class GURL;
31 namespace base {
32 class Time;
35 namespace url {
36 struct CanonHostInfo;
37 struct Parsed;
40 namespace net {
42 // Used by FormatUrl to specify handling of certain parts of the url.
43 typedef uint32 FormatUrlType;
44 typedef uint32 FormatUrlTypes;
46 // IPAddressNumber is used to represent an IP address's numeric value as an
47 // array of bytes, from most significant to least significant. This is the
48 // network byte ordering.
50 // IPv4 addresses will have length 4, whereas IPv6 address will have length 16.
51 typedef std::vector<unsigned char> IPAddressNumber;
52 typedef std::vector<IPAddressNumber> IPAddressList;
54 static const size_t kIPv4AddressSize = 4;
55 static const size_t kIPv6AddressSize = 16;
56 #if defined(OS_WIN)
57 // Bluetooth address size. Windows Bluetooth is supported via winsock.
58 static const size_t kBluetoothAddressSize = 6;
59 #endif
61 // Nothing is ommitted.
62 NET_EXPORT extern const FormatUrlType kFormatUrlOmitNothing;
64 // If set, any username and password are removed.
65 NET_EXPORT extern const FormatUrlType kFormatUrlOmitUsernamePassword;
67 // If the scheme is 'http://', it's removed.
68 NET_EXPORT extern const FormatUrlType kFormatUrlOmitHTTP;
70 // Omits the path if it is just a slash and there is no query or ref. This is
71 // meaningful for non-file "standard" URLs.
72 NET_EXPORT extern const FormatUrlType kFormatUrlOmitTrailingSlashOnBareHostname;
74 // Convenience for omitting all unecessary types.
75 NET_EXPORT extern const FormatUrlType kFormatUrlOmitAll;
77 // Returns the number of explicitly allowed ports; for testing.
78 NET_EXPORT_PRIVATE extern size_t GetCountOfExplicitlyAllowedPorts();
80 // Splits an input of the form <host>[":"<port>] into its consitituent parts.
81 // Saves the result into |*host| and |*port|. If the input did not have
82 // the optional port, sets |*port| to -1.
83 // Returns true if the parsing was successful, false otherwise.
84 // The returned host is NOT canonicalized, and may be invalid.
86 // IPv6 literals must be specified in a bracketed form, for instance:
87 // [::1]:90 and [::1]
89 // The resultant |*host| in both cases will be "::1" (not bracketed).
90 NET_EXPORT bool ParseHostAndPort(
91 std::string::const_iterator host_and_port_begin,
92 std::string::const_iterator host_and_port_end,
93 std::string* host,
94 int* port);
95 NET_EXPORT bool ParseHostAndPort(
96 const std::string& host_and_port,
97 std::string* host,
98 int* port);
100 // Returns a host:port string for the given URL.
101 NET_EXPORT std::string GetHostAndPort(const GURL& url);
103 // Returns a host[:port] string for the given URL, where the port is omitted
104 // if it is the default for the URL's scheme.
105 NET_EXPORT_PRIVATE std::string GetHostAndOptionalPort(const GURL& url);
107 // Returns true if |hostname| contains a non-registerable or non-assignable
108 // domain name (eg: a gTLD that has not been assigned by IANA) or an IP address
109 // that falls in an IANA-reserved range.
110 NET_EXPORT bool IsHostnameNonUnique(const std::string& hostname);
112 // Returns true if an IP address hostname is in a range reserved by the IANA.
113 // Works with both IPv4 and IPv6 addresses, and only compares against a given
114 // protocols's reserved ranges.
115 NET_EXPORT bool IsIPAddressReserved(const IPAddressNumber& address);
117 // Convenience struct for when you need a |struct sockaddr|.
118 struct SockaddrStorage {
119 SockaddrStorage() : addr_len(sizeof(addr_storage)),
120 addr(reinterpret_cast<struct sockaddr*>(&addr_storage)) {}
121 SockaddrStorage(const SockaddrStorage& other);
122 void operator=(const SockaddrStorage& other);
124 struct sockaddr_storage addr_storage;
125 socklen_t addr_len;
126 struct sockaddr* const addr;
129 // Extracts the IP address and port portions of a sockaddr. |port| is optional,
130 // and will not be filled in if NULL.
131 bool GetIPAddressFromSockAddr(const struct sockaddr* sock_addr,
132 socklen_t sock_addr_len,
133 const unsigned char** address,
134 size_t* address_len,
135 uint16* port);
137 // Returns the string representation of an IP address.
138 // For example: "192.168.0.1" or "::1".
139 NET_EXPORT std::string IPAddressToString(const uint8* address,
140 size_t address_len);
142 // Returns the string representation of an IP address along with its port.
143 // For example: "192.168.0.1:99" or "[::1]:80".
144 NET_EXPORT std::string IPAddressToStringWithPort(const uint8* address,
145 size_t address_len,
146 uint16 port);
148 // Same as IPAddressToString() but for a sockaddr. This output will not include
149 // the IPv6 scope ID.
150 NET_EXPORT std::string NetAddressToString(const struct sockaddr* sa,
151 socklen_t sock_addr_len);
153 // Same as IPAddressToStringWithPort() but for a sockaddr. This output will not
154 // include the IPv6 scope ID.
155 NET_EXPORT std::string NetAddressToStringWithPort(const struct sockaddr* sa,
156 socklen_t sock_addr_len);
158 // Same as IPAddressToString() but for an IPAddressNumber.
159 NET_EXPORT std::string IPAddressToString(const IPAddressNumber& addr);
161 // Same as IPAddressToStringWithPort() but for an IPAddressNumber.
162 NET_EXPORT std::string IPAddressToStringWithPort(
163 const IPAddressNumber& addr, uint16 port);
165 // Returns the address as a sequence of bytes in network-byte-order.
166 NET_EXPORT std::string IPAddressToPackedString(const IPAddressNumber& addr);
168 // Returns the hostname of the current system. Returns empty string on failure.
169 NET_EXPORT std::string GetHostName();
171 // Extracts the unescaped username/password from |url|, saving the results
172 // into |*username| and |*password|.
173 NET_EXPORT_PRIVATE void GetIdentityFromURL(const GURL& url,
174 base::string16* username,
175 base::string16* password);
177 // Returns either the host from |url|, or, if the host is empty, the full spec.
178 NET_EXPORT std::string GetHostOrSpecFromURL(const GURL& url);
180 // Return the value of the HTTP response header with name 'name'. 'headers'
181 // should be in the format that URLRequest::GetResponseHeaders() returns.
182 // Returns the empty string if the header is not found.
183 NET_EXPORT std::string GetSpecificHeader(const std::string& headers,
184 const std::string& name);
186 // Converts the given host name to unicode characters. This can be called for
187 // any host name, if the input is not IDN or is invalid in some way, we'll just
188 // return the ASCII source so it is still usable.
190 // The input should be the canonicalized ASCII host name from GURL. This
191 // function does NOT accept UTF-8!
193 // |languages| is a comma separated list of ISO 639 language codes. It
194 // is used to determine whether a hostname is 'comprehensible' to a user
195 // who understands languages listed. |host| will be converted to a
196 // human-readable form (Unicode) ONLY when each component of |host| is
197 // regarded as 'comprehensible'. Scipt-mixing is not allowed except that
198 // Latin letters in the ASCII range can be mixed with a limited set of
199 // script-language pairs (currently Han, Kana and Hangul for zh,ja and ko).
200 // When |languages| is empty, even that mixing is not allowed.
201 NET_EXPORT base::string16 IDNToUnicode(const std::string& host,
202 const std::string& languages);
204 // Canonicalizes |host| and returns it. Also fills |host_info| with
205 // IP address information. |host_info| must not be NULL.
206 NET_EXPORT std::string CanonicalizeHost(const std::string& host,
207 url::CanonHostInfo* host_info);
209 // Returns true if |host| is not an IP address and is compliant with a set of
210 // rules based on RFC 1738 and tweaked to be compatible with the real world.
211 // The rules are:
212 // * One or more components separated by '.'
213 // * Each component begins with an alphanumeric character or '-'
214 // * Each component contains only alphanumeric characters and '-' or '_'
215 // * Each component ends with an alphanumeric character or '-'
216 // * The last component begins with an alphanumeric character
217 // * Optional trailing dot after last component (means "treat as FQDN")
219 // NOTE: You should only pass in hosts that have been returned from
220 // CanonicalizeHost(), or you may not get accurate results.
221 NET_EXPORT bool IsCanonicalizedHostCompliant(const std::string& host);
223 // Call these functions to get the html snippet for a directory listing.
224 // The return values of both functions are in UTF-8.
225 NET_EXPORT std::string GetDirectoryListingHeader(const base::string16& title);
227 // Given the name of a file in a directory (ftp or local) and
228 // other information (is_dir, size, modification time), it returns
229 // the html snippet to add the entry for the file to the directory listing.
230 // Currently, it's a script tag containing a call to a Javascript function
231 // |addRow|.
233 // |name| is the file name to be displayed. |raw_bytes| will be used
234 // as the actual target of the link (so for example, ftp links should use
235 // server's encoding). If |raw_bytes| is an empty string, UTF-8 encoded |name|
236 // will be used.
238 // Both |name| and |raw_bytes| are escaped internally.
239 NET_EXPORT std::string GetDirectoryListingEntry(const base::string16& name,
240 const std::string& raw_bytes,
241 bool is_dir, int64 size,
242 base::Time modified);
244 // If text starts with "www." it is removed, otherwise text is returned
245 // unmodified.
246 NET_EXPORT base::string16 StripWWW(const base::string16& text);
248 // Runs |url|'s host through StripWWW(). |url| must be valid.
249 NET_EXPORT base::string16 StripWWWFromHost(const GURL& url);
251 // Checks |port| against a list of ports which are restricted by default.
252 // Returns true if |port| is allowed, false if it is restricted.
253 NET_EXPORT bool IsPortAllowedByDefault(int port);
255 // Checks |port| against a list of ports which are restricted by the FTP
256 // protocol. Returns true if |port| is allowed, false if it is restricted.
257 NET_EXPORT_PRIVATE bool IsPortAllowedByFtp(int port);
259 // Check if banned |port| has been overriden by an entry in
260 // |explicitly_allowed_ports_|.
261 NET_EXPORT_PRIVATE bool IsPortAllowedByOverride(int port);
263 // Set socket to non-blocking mode
264 NET_EXPORT int SetNonBlocking(int fd);
266 // Formats the host in |url| and appends it to |output|. The host formatter
267 // takes the same accept languages component as ElideURL().
268 NET_EXPORT void AppendFormattedHost(const GURL& url,
269 const std::string& languages,
270 base::string16* output);
272 // Creates a string representation of |url|. The IDN host name may be in Unicode
273 // if |languages| accepts the Unicode representation. |format_type| is a bitmask
274 // of FormatUrlTypes, see it for details. |unescape_rules| defines how to clean
275 // the URL for human readability. You will generally want |UnescapeRule::SPACES|
276 // for display to the user if you can handle spaces, or |UnescapeRule::NORMAL|
277 // if not. If the path part and the query part seem to be encoded in %-encoded
278 // UTF-8, decodes %-encoding and UTF-8.
280 // The last three parameters may be NULL.
282 // |new_parsed| will be set to the parsing parameters of the resultant URL.
284 // |prefix_end| will be the length before the hostname of the resultant URL.
286 // |offset[s]_for_adjustment| specifies one or more offsets into the original
287 // URL, representing insertion or selection points between characters: if the
288 // input is "http://foo.com/", offset 0 is before the entire URL, offset 7 is
289 // between the scheme and the host, and offset 15 is after the end of the URL.
290 // Valid input offsets range from 0 to the length of the input URL string. On
291 // exit, each offset will have been modified to reflect any changes made to the
292 // output string. For example, if |url| is "http://a:b@c.com/",
293 // |omit_username_password| is true, and an offset is 12 (pointing between 'c'
294 // and '.'), then on return the output string will be "http://c.com/" and the
295 // offset will be 8. If an offset cannot be successfully adjusted (e.g. because
296 // it points into the middle of a component that was entirely removed or into
297 // the middle of an encoding sequence), it will be set to base::string16::npos.
298 // For consistency, if an input offset points between the scheme and the
299 // username/password, and both are removed, on output this offset will be 0
300 // rather than npos; this means that offsets at the starts and ends of removed
301 // components are always transformed the same way regardless of what other
302 // components are adjacent.
303 NET_EXPORT base::string16 FormatUrl(const GURL& url,
304 const std::string& languages,
305 FormatUrlTypes format_types,
306 UnescapeRule::Type unescape_rules,
307 url::Parsed* new_parsed,
308 size_t* prefix_end,
309 size_t* offset_for_adjustment);
310 NET_EXPORT base::string16 FormatUrlWithOffsets(
311 const GURL& url,
312 const std::string& languages,
313 FormatUrlTypes format_types,
314 UnescapeRule::Type unescape_rules,
315 url::Parsed* new_parsed,
316 size_t* prefix_end,
317 std::vector<size_t>* offsets_for_adjustment);
318 // This function is like those above except it takes |adjustments| rather
319 // than |offset[s]_for_adjustment|. |adjustments| will be set to reflect all
320 // the transformations that happened to |url| to convert it into the returned
321 // value.
322 NET_EXPORT base::string16 FormatUrlWithAdjustments(
323 const GURL& url,
324 const std::string& languages,
325 FormatUrlTypes format_types,
326 UnescapeRule::Type unescape_rules,
327 url::Parsed* new_parsed,
328 size_t* prefix_end,
329 base::OffsetAdjuster::Adjustments* adjustments);
331 // This is a convenience function for FormatUrl() with
332 // format_types = kFormatUrlOmitAll and unescape = SPACES. This is the typical
333 // set of flags for "URLs to display to the user". You should be cautious about
334 // using this for URLs which will be parsed or sent to other applications.
335 inline base::string16 FormatUrl(const GURL& url, const std::string& languages) {
336 return FormatUrl(url, languages, kFormatUrlOmitAll, UnescapeRule::SPACES,
337 NULL, NULL, NULL);
340 // Returns whether FormatUrl() would strip a trailing slash from |url|, given a
341 // format flag including kFormatUrlOmitTrailingSlashOnBareHostname.
342 NET_EXPORT bool CanStripTrailingSlash(const GURL& url);
344 // Strip the portions of |url| that aren't core to the network request.
345 // - user name / password
346 // - reference section
347 NET_EXPORT_PRIVATE GURL SimplifyUrlForRequest(const GURL& url);
349 NET_EXPORT void SetExplicitlyAllowedPorts(const std::string& allowed_ports);
351 class NET_EXPORT ScopedPortException {
352 public:
353 explicit ScopedPortException(int port);
354 ~ScopedPortException();
356 private:
357 int port_;
359 DISALLOW_COPY_AND_ASSIGN(ScopedPortException);
362 // Returns true if it can determine that only loopback addresses are configured.
363 // i.e. if only 127.0.0.1 and ::1 are routable.
364 // Also returns false if it cannot determine this.
365 bool HaveOnlyLoopbackAddresses();
367 // Returns AddressFamily of the address.
368 NET_EXPORT_PRIVATE AddressFamily GetAddressFamily(
369 const IPAddressNumber& address);
371 // Maps the given AddressFamily to either AF_INET, AF_INET6 or AF_UNSPEC.
372 NET_EXPORT_PRIVATE int ConvertAddressFamily(AddressFamily address_family);
374 // Parses a URL-safe IP literal (see RFC 3986, Sec 3.2.2) to its numeric value.
375 // Returns true on success, and fills |ip_number| with the numeric value
376 NET_EXPORT bool ParseURLHostnameToNumber(const std::string& hostname,
377 IPAddressNumber* ip_number);
379 // Parses an IP address literal (either IPv4 or IPv6) to its numeric value.
380 // Returns true on success and fills |ip_number| with the numeric value.
381 NET_EXPORT bool ParseIPLiteralToNumber(const std::string& ip_literal,
382 IPAddressNumber* ip_number);
384 // Converts an IPv4 address to an IPv4-mapped IPv6 address.
385 // For example 192.168.0.1 would be converted to ::ffff:192.168.0.1.
386 NET_EXPORT_PRIVATE IPAddressNumber ConvertIPv4NumberToIPv6Number(
387 const IPAddressNumber& ipv4_number);
389 // Returns true iff |address| is an IPv4-mapped IPv6 address.
390 NET_EXPORT_PRIVATE bool IsIPv4Mapped(const IPAddressNumber& address);
392 // Converts an IPv4-mapped IPv6 address to IPv4 address. Should only be called
393 // on IPv4-mapped IPv6 addresses.
394 NET_EXPORT_PRIVATE IPAddressNumber ConvertIPv4MappedToIPv4(
395 const IPAddressNumber& address);
397 // Parses an IP block specifier from CIDR notation to an
398 // (IP address, prefix length) pair. Returns true on success and fills
399 // |*ip_number| with the numeric value of the IP address and sets
400 // |*prefix_length_in_bits| with the length of the prefix.
402 // CIDR notation literals can use either IPv4 or IPv6 literals. Some examples:
404 // 10.10.3.1/20
405 // a:b:c::/46
406 // ::1/128
407 NET_EXPORT bool ParseCIDRBlock(const std::string& cidr_literal,
408 IPAddressNumber* ip_number,
409 size_t* prefix_length_in_bits);
411 // Compares an IP address to see if it falls within the specified IP block.
412 // Returns true if it does, false otherwise.
414 // The IP block is given by (|ip_prefix|, |prefix_length_in_bits|) -- any
415 // IP address whose |prefix_length_in_bits| most significant bits match
416 // |ip_prefix| will be matched.
418 // In cases when an IPv4 address is being compared to an IPv6 address prefix
419 // and vice versa, the IPv4 addresses will be converted to IPv4-mapped
420 // (IPv6) addresses.
421 NET_EXPORT_PRIVATE bool IPNumberMatchesPrefix(const IPAddressNumber& ip_number,
422 const IPAddressNumber& ip_prefix,
423 size_t prefix_length_in_bits);
425 // Retuns the port field of the |sockaddr|.
426 const uint16* GetPortFieldFromSockaddr(const struct sockaddr* address,
427 socklen_t address_len);
428 // Returns the value of port in |sockaddr| (in host byte ordering).
429 NET_EXPORT_PRIVATE int GetPortFromSockaddr(const struct sockaddr* address,
430 socklen_t address_len);
432 // Returns true if |host| is one of the names (e.g. "localhost") or IP
433 // addresses (IPv4 127.0.0.0/8 or IPv6 ::1) that indicate a loopback.
435 // Note that this function does not check for IP addresses other than
436 // the above, although other IP addresses may point to the local
437 // machine.
438 NET_EXPORT_PRIVATE bool IsLocalhost(const std::string& host);
440 // A subset of IP address attributes which are actionable by the
441 // application layer. Currently unimplemented for all hosts;
442 // IP_ADDRESS_ATTRIBUTE_NONE is always returned.
443 enum IPAddressAttributes {
444 IP_ADDRESS_ATTRIBUTE_NONE = 0,
446 // A temporary address is dynamic by nature and will not contain MAC
447 // address. Presence of MAC address in IPv6 addresses can be used to
448 // track an endpoint and cause privacy concern. Please refer to
449 // RFC4941.
450 IP_ADDRESS_ATTRIBUTE_TEMPORARY = 1 << 0,
452 // A temporary address could become deprecated once the preferred
453 // lifetime is reached. It is still valid but shouldn't be used to
454 // create new connections.
455 IP_ADDRESS_ATTRIBUTE_DEPRECATED = 1 << 1,
458 // struct that is used by GetNetworkList() to represent a network
459 // interface.
460 struct NET_EXPORT NetworkInterface {
461 NetworkInterface();
462 NetworkInterface(const std::string& name,
463 const std::string& friendly_name,
464 uint32 interface_index,
465 NetworkChangeNotifier::ConnectionType type,
466 const IPAddressNumber& address,
467 uint32 network_prefix,
468 int ip_address_attributes);
469 ~NetworkInterface();
471 std::string name;
472 std::string friendly_name; // Same as |name| on non-Windows.
473 uint32 interface_index; // Always 0 on Android.
474 NetworkChangeNotifier::ConnectionType type;
475 IPAddressNumber address;
476 uint32 network_prefix;
477 int ip_address_attributes; // Combination of |IPAddressAttributes|.
480 typedef std::vector<NetworkInterface> NetworkInterfaceList;
482 // Policy settings to include/exclude network interfaces.
483 enum HostAddressSelectionPolicy {
484 INCLUDE_HOST_SCOPE_VIRTUAL_INTERFACES = 0x0,
485 EXCLUDE_HOST_SCOPE_VIRTUAL_INTERFACES = 0x1,
486 // Include temp address only when interface has both permanent and
487 // temp addresses.
488 INCLUDE_ONLY_TEMP_IPV6_ADDRESS_IF_POSSIBLE = 0x2,
491 // Returns list of network interfaces except loopback interface. If an
492 // interface has more than one address, a separate entry is added to
493 // the list for each address.
494 // Can be called only on a thread that allows IO.
495 NET_EXPORT bool GetNetworkList(NetworkInterfaceList* networks,
496 int policy);
498 // General category of the IEEE 802.11 (wifi) physical layer operating mode.
499 enum WifiPHYLayerProtocol {
500 // No wifi support or no associated AP.
501 WIFI_PHY_LAYER_PROTOCOL_NONE,
502 // An obsolete modes introduced by the original 802.11, e.g. IR, FHSS.
503 WIFI_PHY_LAYER_PROTOCOL_ANCIENT,
504 // 802.11a, OFDM-based rates.
505 WIFI_PHY_LAYER_PROTOCOL_A,
506 // 802.11b, DSSS or HR DSSS.
507 WIFI_PHY_LAYER_PROTOCOL_B,
508 // 802.11g, same rates as 802.11a but compatible with 802.11b.
509 WIFI_PHY_LAYER_PROTOCOL_G,
510 // 802.11n, HT rates.
511 WIFI_PHY_LAYER_PROTOCOL_N,
512 // Unclassified mode or failure to identify.
513 WIFI_PHY_LAYER_PROTOCOL_UNKNOWN
516 // Characterize the PHY mode of the currently associated access point.
517 // Currently only available on OS_WIN.
518 NET_EXPORT WifiPHYLayerProtocol GetWifiPHYLayerProtocol();
520 enum WifiOptions {
521 // Disables background SSID scans.
522 WIFI_OPTIONS_DISABLE_SCAN = 1 << 0,
523 // Enables media streaming mode.
524 WIFI_OPTIONS_MEDIA_STREAMING_MODE = 1 << 1
527 class NET_EXPORT ScopedWifiOptions {
528 public:
529 ScopedWifiOptions() {}
530 virtual ~ScopedWifiOptions();
532 private:
533 DISALLOW_COPY_AND_ASSIGN(ScopedWifiOptions);
536 // Set temporary options on all wifi interfaces.
537 // |options| is an ORed bitfield of WifiOptions.
538 // Options are automatically disabled when the scoped pointer
539 // is freed. Currently only available on OS_WIN.
540 NET_EXPORT scoped_ptr<ScopedWifiOptions> SetWifiOptions(int options);
542 // Returns number of matching initial bits between the addresses |a1| and |a2|.
543 unsigned CommonPrefixLength(const IPAddressNumber& a1,
544 const IPAddressNumber& a2);
546 // Computes the number of leading 1-bits in |mask|.
547 unsigned MaskPrefixLength(const IPAddressNumber& mask);
549 // Differentiated Services Code Point.
550 // See http://tools.ietf.org/html/rfc2474 for details.
551 enum DiffServCodePoint {
552 DSCP_NO_CHANGE = -1,
553 DSCP_FIRST = DSCP_NO_CHANGE,
554 DSCP_DEFAULT = 0, // Same as DSCP_CS0
555 DSCP_CS0 = 0, // The default
556 DSCP_CS1 = 8, // Bulk/background traffic
557 DSCP_AF11 = 10,
558 DSCP_AF12 = 12,
559 DSCP_AF13 = 14,
560 DSCP_CS2 = 16,
561 DSCP_AF21 = 18,
562 DSCP_AF22 = 20,
563 DSCP_AF23 = 22,
564 DSCP_CS3 = 24,
565 DSCP_AF31 = 26,
566 DSCP_AF32 = 28,
567 DSCP_AF33 = 30,
568 DSCP_CS4 = 32,
569 DSCP_AF41 = 34, // Video
570 DSCP_AF42 = 36, // Video
571 DSCP_AF43 = 38, // Video
572 DSCP_CS5 = 40, // Video
573 DSCP_EF = 46, // Voice
574 DSCP_CS6 = 48, // Voice
575 DSCP_CS7 = 56, // Control messages
576 DSCP_LAST = DSCP_CS7
579 } // namespace net
581 #endif // NET_BASE_NET_UTIL_H_