3202707270df3e22bc765fda1b743cd6f168b3da
[debian/gnuradio] / gruel / src / include / gruel / inet.h.in
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2008, 2009 Free Software Foundation, Inc.
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #ifndef INCLUDED_INET_H
20 #define INCLUDED_INET_H
21
22 #if 1 /* missing htonll or ntohll */
23 #if @GR_ARCH_BIGENDIAN@  /* GR_ARCH_BIGENDIAN */
24 // Nothing to do...
25 static inline uint64_t htonll(uint64_t x){ return x;}
26 static inline uint64_t ntohll(uint64_t x){ return x;}
27 #else
28 #if @GR_HAVE_BYTESWAP@  /* GR_HAVE_BYTESWAP */
29 #include <byteswap.h>
30 #else
31
32 static inline uint64_t
33 bswap_64(uint64_t x)
34 {
35   return ((x & 0x00000000000000ffull) << 56) | ((x & 0x000000000000ff00ull) << 40) |
36          ((x & 0x0000000000ff0000ull) << 24) | ((x & 0x00000000ff000000ull) <<  8) |
37          ((x & 0x000000ff00000000ull) >>  8) | ((x & 0x0000ff0000000000ull) >> 24) |
38          ((x & 0x00ff000000000000ull) >> 40) | ((x & 0xff00000000000000ull) >> 56);
39 }
40
41 #endif /* GR_HAVE_BYTESWAP */
42
43 static inline uint64_t htonll(uint64_t x){ return bswap_64(x);}
44 static inline uint64_t ntohll(uint64_t x){ return bswap_64(x);}
45
46 #endif /* GR_ARCH_BIGENDIAN */
47 #endif /* missing htonll or ntohll */ 
48
49 #if @GR_HAVE_ARPA_INET@  /* GR_HAVE_ARPA_INET */
50 #include <arpa/inet.h>
51 #elif @GR_HAVE_NETINET_IN@  /* GR_HAVE_NETINET_IN */
52 #include <netinet/in.h>
53 #else
54 #include <stdint.h>
55
56 #if @GR_ARCH_BIGENDIAN@  /* GR_ARCH_BIGENDIAN */
57 // Nothing to do...
58 static inline uint32_t htonl(uint32_t x){ return x; }
59 static inline uint16_t htons(uint16_t x){ return x; }
60 static inline uint32_t ntohl(uint32_t x){ return x; }
61 static inline uint16_t ntohs(uint16_t x){ return x; }
62 #else
63 #if @GR_HAVE_BYTESWAP@  /* GR_HAVE_BYTESWAP */
64 #include <byteswap.h>
65 #else
66 static inline uint16_t
67 bswap_16 (uint16_t x)
68 {
69   return ((((x) >> 8) & 0xff) | (((x) & 0xff) << 8));
70 }
71
72 static inline uint32_t
73 bswap_32 (uint32_t x)
74 {
75   return ((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >>  8) \
76         | (((x) & 0x0000ff00) <<  8) | (((x) & 0x000000ff) << 24));
77 }
78 #endif /* GR_HAVE_BYTESWAP */
79
80 static inline uint32_t htonl(uint32_t x){ return bswap_32(x); }
81 static inline uint16_t htons(uint16_t x){ return bswap_16(x); }
82 static inline uint32_t ntohl(uint32_t x){ return bswap_32(x); }
83 static inline uint16_t ntohs(uint16_t x){ return bswap_16(x); }
84 #endif /* GR_ARCH_BIGENDIAN */
85
86 #endif /* !(GR_HAVE_NETINET_IN || GR_HAVE_ARPA_INET) */
87
88 static inline uint8_t  ntohx(uint8_t  x){ return x;        }
89 static inline uint16_t ntohx(uint16_t x){ return ntohs(x); }
90 static inline uint32_t ntohx(uint32_t x){ return ntohl(x); }
91 static inline uint64_t ntohx(uint64_t x){ return ntohll(x);}
92 static inline uint8_t  htonx(uint8_t  x){ return x;        }
93 static inline uint16_t htonx(uint16_t x){ return htons(x); }
94 static inline uint32_t htonx(uint32_t x){ return htonl(x); }
95 static inline uint64_t htonx(uint64_t x){ return htonll(x);}
96
97 #endif /* INCLUDED_INET_H */