diff options
author | Martin Szulecki | 2010-03-24 14:56:02 +0100 |
---|---|---|
committer | Martin Szulecki | 2010-03-24 14:56:02 +0100 |
commit | 6f07a0bb701d6236dda7b19bd04df6414708dc78 (patch) | |
tree | 5fe616a32f5d6f658107d2302f9681fa55c961a1 /src/property_list_service.c | |
parent | c39f08af9aca0f8b86c713345e2055e408b560dd (diff) | |
download | libimobiledevice-6f07a0bb701d6236dda7b19bd04df6414708dc78.tar.gz libimobiledevice-6f07a0bb701d6236dda7b19bd04df6414708dc78.tar.bz2 |
Use glib GUINT32_TO/FROM_BE macros instead of htonl/ntohl
Diffstat (limited to 'src/property_list_service.c')
-rw-r--r-- | src/property_list_service.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/property_list_service.c b/src/property_list_service.c index eaf0b30..80b5f52 100644 --- a/src/property_list_service.c +++ b/src/property_list_service.c @@ -20,7 +20,7 @@ */ #include <stdlib.h> #include <string.h> -#include <netinet/in.h> +#include <glib.h> #include "property_list_service.h" #include "idevice.h" @@ -138,7 +138,7 @@ static property_list_service_error_t internal_plist_send(property_list_service_c return PROPERTY_LIST_SERVICE_E_PLIST_ERROR; } - nlen = htonl(length); + nlen = GUINT32_TO_BE(length); debug_info("sending %d bytes", length); idevice_connection_send(client->connection, (const char*)&nlen, sizeof(nlen), (uint32_t*)&bytes); if (bytes == sizeof(nlen)) { @@ -229,7 +229,7 @@ static property_list_service_error_t internal_plist_receive_timeout(property_lis if ((char)pktlen == 0) { /* prevent huge buffers */ uint32_t curlen = 0; char *content = NULL; - pktlen = ntohl(pktlen); + pktlen = GUINT32_FROM_BE(pktlen); debug_info("%d bytes following", pktlen); content = (char*)malloc(pktlen); |