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

Side by Side Diff: base/sys_byteorder.h

Issue 8949026: Move net/base/sys_byteorder.h to base/sys_byteorder.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Once more, with feeling Created 9 years 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 | « base/base.gypi ('k') | chrome/browser/chromeos/web_socket_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 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.
4
5 // This is a convenience header to pull in the platform-specific
6 // headers that define functions for byte-order conversion,
7 // particularly: ntohs(), htons(), ntohl(), htonl(). Prefer including
8 // this file instead of directly writing the #if / #else, since it
9 // avoids duplicating the platform-specific selections.
10 // This header also provides ntoh_64() and hton_64() for byte-order conversion
11 // for 64-bit integers.
12
13 #ifndef BASE_SYS_BYTEORDER_H_
14 #define BASE_SYS_BYTEORDER_H_
15
16 #include "build/build_config.h"
17
18 #if defined(OS_WIN)
19 #include <winsock2.h>
20 #else
21 #include <arpa/inet.h>
22 #endif
23
24 // Include headers to provide bswap for all platforms.
25 #if defined(COMPILER_MSVC)
26 #include <stdlib.h>
27 #define bswap_16(x) _byteswap_ushort(x)
brettw 2011/12/21 17:48:14 Did we consider writing real inline functions rath
Ilya Sherman 2011/12/21 19:43:08 +hclam, who originally added these, and probably h
Ryan Sleevi 2011/12/21 19:49:10 wtc is probably a better candidate, as he reviewed
wtc 2011/12/23 00:37:22 No, we didn't consider writing real inline functio
Ilya Sherman 2011/12/23 02:31:29 Ok, wrote these as real inline functions instead.
28 #define bswap_32(x) _byteswap_ulong(x)
29 #define bswap_64(x) _byteswap_uint64(x)
30 #elif defined(OS_MACOSX)
31 #include <libkern/OSByteOrder.h>
32 #define bswap_16(x) OSSwapInt16(x)
33 #define bswap_32(x) OSSwapInt32(x)
34 #define bswap_64(x) OSSwapInt64(x)
35 #elif defined(OS_OPENBSD)
36 #include <sys/endian.h>
37 #define bswap_16(x) swap16(x)
38 #define bswap_32(x) swap32(x)
39 #define bswap_64(x) swap64(x)
40 #else
41 #include <byteswap.h>
42 #endif
43
44 #if defined(ARCH_CPU_LITTLE_ENDIAN)
45 #define ntoh_64(x) bswap_64(x)
46 #define hton_64(x) bswap_64(x)
47 #else
48 #define ntoh_64(x) (x)
49 #define hton_64(x) (x)
50 #endif
51
52 #endif // BASE_SYS_BYTEORDER_H_
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | chrome/browser/chromeos/web_socket_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698