..
This commit is contained in:
parent
c292b4ada8
commit
b83a1da5ce
2 changed files with 8 additions and 12 deletions
|
@ -17,7 +17,6 @@
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <sys/utsname.h>
|
|
||||||
|
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
#include <endian.h>
|
#include <endian.h>
|
||||||
|
@ -117,9 +116,9 @@ int main(int argc, const char* argv[])
|
||||||
|
|
||||||
uint16_t proxyPorts[PROXY_PORT_COUNT] =
|
uint16_t proxyPorts[PROXY_PORT_COUNT] =
|
||||||
{
|
{
|
||||||
htobe16(50000),
|
htons(50000),
|
||||||
htobe16(50001),
|
htons(50001),
|
||||||
htobe16(50002)
|
htons(50002)
|
||||||
};
|
};
|
||||||
|
|
||||||
// Start up
|
// Start up
|
||||||
|
@ -389,9 +388,6 @@ int main(int argc, const char* argv[])
|
||||||
memset(outgoingBuffer, 0, sizeof(struct RewindData));
|
memset(outgoingBuffer, 0, sizeof(struct RewindData));
|
||||||
memcpy(outgoingBuffer, REWIND_PROTOCOL_SIGN, REWIND_SIGN_LENGTH);
|
memcpy(outgoingBuffer, REWIND_PROTOCOL_SIGN, REWIND_SIGN_LENGTH);
|
||||||
|
|
||||||
struct utsname systemName;
|
|
||||||
uname(&systemName);
|
|
||||||
|
|
||||||
struct sockaddr_in repeaterSocketAddresses[3];
|
struct sockaddr_in repeaterSocketAddresses[3];
|
||||||
memset(repeaterSocketAddresses, 0, sizeof(repeaterSocketAddresses));
|
memset(repeaterSocketAddresses, 0, sizeof(repeaterSocketAddresses));
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
#define VERSION 20161101
|
#define VERSION 20161102
|
||||||
|
|
Loading…
Add table
Reference in a new issue