blob: cec2d0f573054739e2689cea7f04701dd0253ac8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
//===-- htonl.c -----------------------------------------------------------===//
//
// The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <sys/types.h>
#include <sys/param.h>
#include <stdint.h>
#undef htons
#undef htonl
#undef ntohs
#undef ntohl
// Make sure we can recognize the endianness.
#if (!defined(BYTE_ORDER) || !defined(BIG_ENDIAN) || !defined(LITTLE_ENDIAN))
#error "Unknown platform endianness!"
#endif
#if BYTE_ORDER == LITTLE_ENDIAN
uint16_t htons(uint16_t v) {
return (v >> 8) | (v << 8);
}
uint32_t htonl(uint32_t v) {
return htons(v >> 16) | (htons((uint16_t) v) << 16);
}
#else
uint16_t htons(uint16_t v) {
return v;
}
uint32_t htonl(uint32_t v) {
return v;
}
#endif
uint16_t ntohs(uint32_t v) {
return htons(v);
}
uint32_t ntohl(uint32_t v) {
return htonl(v);
}
|