Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef GEARMAN_BYTEORDER_H
00017 #define GEARMAN_BYTEORDER_H
00018
00019 #ifndef HAVE_HTONLL
00020
00021 GEARMAN_INTERNAL_API
00022 uint64_t ntohll(uint64_t);
00023
00024 GEARMAN_INTERNAL_API
00025 uint64_t htonll(uint64_t);
00026
00027 #endif
00028
00029 #ifdef linux
00030
00031
00032
00033
00034
00035 #undef ntohs
00036 #undef ntohl
00037 #undef htons
00038 #undef htonl
00039 #endif
00040
00041 #endif