...
This commit is contained in:
parent
2db1320261
commit
fd7b8d659c
3 changed files with 10 additions and 4 deletions
|
@ -17,10 +17,12 @@
|
|||
#include <sys/time.h>
|
||||
#include <sys/socket.h>
|
||||
|
||||
|
||||
#include <openssl/sha.h>
|
||||
|
||||
#ifdef __linux__
|
||||
#include <endian.h>
|
||||
#include <byteswap.h>
|
||||
#include <sys/epoll.h>
|
||||
#include <sys/timerfd.h>
|
||||
#include <sys/signalfd.h>
|
||||
|
@ -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);
|
||||
|
|
3
Makefile
3
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
|
||||
|
|
|
@ -1 +1 @@
|
|||
#define VERSION 7406
|
||||
#define VERSION 20160731
|
||||
|
|
Loading…
Add table
Reference in a new issue