From fd7b8d659c9be51ae94c79c66a2713ac34020092 Mon Sep 17 00:00:00 2001 From: cyanide-burnout Date: Sun, 31 Jul 2016 21:34:18 +0400 Subject: [PATCH] ... --- CronosAgent.c | 9 +++++++-- Makefile | 3 ++- Version.h | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CronosAgent.c b/CronosAgent.c index f76cfbc..c7bebba 100644 --- a/CronosAgent.c +++ b/CronosAgent.c @@ -17,10 +17,12 @@ #include #include + #include #ifdef __linux__ #include +#include #include #include #include @@ -92,6 +94,9 @@ #define le16toh(value) OSSwapLittleToHostInt16(value) #define htole32(value) OSSwapHostToLittleInt32(value) #define le32toh(value) OSSwapLittleToHostInt32(value) + +#define __bswap_16(value) OSSwapConstInt16(value) +#define __bswap_32(value) OSSwapConstInt32(value) #endif @@ -662,8 +667,8 @@ int main(int argc, const char* argv[]) size_t length = sizeof(struct RewindAddressData); struct RewindAddressData* data = (struct RewindAddressData*)outgoingBuffer->data; - data->address = information->ipi_addr; - data->port = proxySocketAddress.sin_port; + data->address.s_addr = information->ipi_addr.s_addr; + data->port = __bswap_16(proxySocketAddress.sin_port); outgoingBuffer->type = htole16(REWIND_TYPE_ADDRESS_NOTICE); outgoingBuffer->flags = htole16(REWIND_FLAG_DEFAULT_SET); diff --git a/Makefile b/Makefile index d178737..2cefc32 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,8 @@ clean: rm -f *.d version: - echo "#define VERSION $(shell svn info | grep -E "^Revision:" | grep -o -E "[0-9]+")" > Version.h + # echo "#define VERSION $(shell svn info | grep -E "^Revision:" | grep -o -E "[0-9]+")" > Version.h + echo "#define VERSION $(shell date -u +%Y%m%d)" > Version.h debian-package: ./UpdateLog.sh diff --git a/Version.h b/Version.h index 9721c98..0322a78 100644 --- a/Version.h +++ b/Version.h @@ -1 +1 @@ -#define VERSION 7406 +#define VERSION 20160731