| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #if OS(POSIX) | 34 #if OS(POSIX) |
| 35 #include <arpa/inet.h> | 35 #include <arpa/inet.h> |
| 36 #endif | 36 #endif |
| 37 | 37 |
| 38 #if OS(WIN) | 38 #if OS(WIN) |
| 39 | 39 |
| 40 #include "wtf/ByteSwap.h" | 40 #include "wtf/ByteSwap.h" |
| 41 #include "wtf/CPU.h" | 41 #include "wtf/CPU.h" |
| 42 | 42 |
| 43 #if CPU(BIG_ENDIAN) | 43 #if CPU(BIG_ENDIAN) |
| 44 inline uint16_t ntohs(uint16_t x) { return x; } | 44 inline uint16_t ntohs(uint16_t x) { |
| 45 inline uint16_t htons(uint16_t x) { return x; } | 45 return x; |
| 46 inline uint32_t ntohl(uint32_t x) { return x; } | 46 } |
| 47 inline uint32_t htonl(uint32_t x) { return x; } | 47 inline uint16_t htons(uint16_t x) { |
| 48 return x; |
| 49 } |
| 50 inline uint32_t ntohl(uint32_t x) { |
| 51 return x; |
| 52 } |
| 53 inline uint32_t htonl(uint32_t x) { |
| 54 return x; |
| 55 } |
| 48 #elif CPU(MIDDLE_ENDIAN) | 56 #elif CPU(MIDDLE_ENDIAN) |
| 49 inline uint16_t ntohs(uint16_t x) { return x; } | 57 inline uint16_t ntohs(uint16_t x) { |
| 50 inline uint16_t htons(uint16_t x) { return x; } | 58 return x; |
| 51 inline uint32_t ntohl(uint32_t x) { return WTF::wswap32(x); } | 59 } |
| 52 inline uint32_t htonl(uint32_t x) { return WTF::wswap32(x); } | 60 inline uint16_t htons(uint16_t x) { |
| 61 return x; |
| 62 } |
| 63 inline uint32_t ntohl(uint32_t x) { |
| 64 return WTF::wswap32(x); |
| 65 } |
| 66 inline uint32_t htonl(uint32_t x) { |
| 67 return WTF::wswap32(x); |
| 68 } |
| 53 #else | 69 #else |
| 54 inline uint16_t ntohs(uint16_t x) { return WTF::bswap16(x); } | 70 inline uint16_t ntohs(uint16_t x) { |
| 55 inline uint16_t htons(uint16_t x) { return WTF::bswap16(x); } | 71 return WTF::bswap16(x); |
| 56 inline uint32_t ntohl(uint32_t x) { return WTF::bswap32(x); } | 72 } |
| 57 inline uint32_t htonl(uint32_t x) { return WTF::bswap32(x); } | 73 inline uint16_t htons(uint16_t x) { |
| 74 return WTF::bswap16(x); |
| 75 } |
| 76 inline uint32_t ntohl(uint32_t x) { |
| 77 return WTF::bswap32(x); |
| 78 } |
| 79 inline uint32_t htonl(uint32_t x) { |
| 80 return WTF::bswap32(x); |
| 81 } |
| 58 #endif | 82 #endif |
| 59 | 83 |
| 60 #endif // OS(WIN) | 84 #endif // OS(WIN) |
| 61 | 85 |
| 62 #endif // WTF_ByteOrder_h | 86 #endif // WTF_ByteOrder_h |
| OLD | NEW |