4
Fork 0
This commit is contained in:
R3ABM Artem 2016-07-31 21:34:18 +04:00
parent 2db1320261
commit fd7b8d659c
3 changed files with 10 additions and 4 deletions

View file

@ -17,10 +17,12 @@
#include <sys/time.h> #include <sys/time.h>
#include <sys/socket.h> #include <sys/socket.h>
#include <openssl/sha.h> #include <openssl/sha.h>
#ifdef __linux__ #ifdef __linux__
#include <endian.h> #include <endian.h>
#include <byteswap.h>
#include <sys/epoll.h> #include <sys/epoll.h>
#include <sys/timerfd.h> #include <sys/timerfd.h>
#include <sys/signalfd.h> #include <sys/signalfd.h>
@ -92,6 +94,9 @@
#define le16toh(value) OSSwapLittleToHostInt16(value) #define le16toh(value) OSSwapLittleToHostInt16(value)
#define htole32(value) OSSwapHostToLittleInt32(value) #define htole32(value) OSSwapHostToLittleInt32(value)
#define le32toh(value) OSSwapLittleToHostInt32(value) #define le32toh(value) OSSwapLittleToHostInt32(value)
#define __bswap_16(value) OSSwapConstInt16(value)
#define __bswap_32(value) OSSwapConstInt32(value)
#endif #endif
@ -662,8 +667,8 @@ int main(int argc, const char* argv[])
size_t length = sizeof(struct RewindAddressData); size_t length = sizeof(struct RewindAddressData);
struct RewindAddressData* data = (struct RewindAddressData*)outgoingBuffer->data; struct RewindAddressData* data = (struct RewindAddressData*)outgoingBuffer->data;
data->address = information->ipi_addr; data->address.s_addr = information->ipi_addr.s_addr;
data->port = proxySocketAddress.sin_port; data->port = __bswap_16(proxySocketAddress.sin_port);
outgoingBuffer->type = htole16(REWIND_TYPE_ADDRESS_NOTICE); outgoingBuffer->type = htole16(REWIND_TYPE_ADDRESS_NOTICE);
outgoingBuffer->flags = htole16(REWIND_FLAG_DEFAULT_SET); outgoingBuffer->flags = htole16(REWIND_FLAG_DEFAULT_SET);

View file

@ -53,7 +53,8 @@ clean:
rm -f *.d rm -f *.d
version: 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: debian-package:
./UpdateLog.sh ./UpdateLog.sh

View file

@ -1 +1 @@
#define VERSION 7406 #define VERSION 20160731