mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-06 20:43:44 +02:00
Fixed typo
This commit is contained in:
parent
c488fa8461
commit
de2ba8d0f7
4 changed files with 6 additions and 6 deletions
|
@ -109,8 +109,8 @@ netcon: rpc_lib $(OBJS)
|
||||||
|
|
||||||
|
|
||||||
rpc_lib:
|
rpc_lib:
|
||||||
g++ -c -fPIC -lpthread netcon/rpc.c -DVERBOSE -o netcon/rpc.o
|
g++ -c -fPIC -lpthread netcon/RPC.c -DVERBOSE -o netcon/RPC.o
|
||||||
ar -rv netcon/librpc.a netcon/rpc.o
|
ar -rv netcon/librpc.a netcon/RPC.o
|
||||||
|
|
||||||
|
|
||||||
selftest: $(OBJS) selftest.o
|
selftest: $(OBJS) selftest.o
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
#define SOCK_TYPE_MASK 0xf
|
#define SOCK_TYPE_MASK 0xf
|
||||||
|
|
||||||
#include "Intercept.h"
|
#include "Intercept.h"
|
||||||
#include "rpc.h"
|
#include "RPC.h"
|
||||||
#include "common.inc.c"
|
#include "common.inc.c"
|
||||||
|
|
||||||
/* Global Declarations */
|
/* Global Declarations */
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
#include "lwip/tcp.h"
|
#include "lwip/tcp.h"
|
||||||
|
|
||||||
#include "common.inc.c"
|
#include "common.inc.c"
|
||||||
#include "rpc.h"
|
#include "RPC.h"
|
||||||
|
|
||||||
#define APPLICATION_POLL_FREQ 20
|
#define APPLICATION_POLL_FREQ 20
|
||||||
#define ZT_LWIP_TCP_TIMER_INTERVAL 5
|
#define ZT_LWIP_TCP_TIMER_INTERVAL 5
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <strings.h>
|
#include <strings.h>
|
||||||
#include "rpc.h"
|
#include "RPC.h"
|
||||||
|
|
||||||
#define RPC_FD 1023
|
#define RPC_FD 1023
|
||||||
#define SERVICE_CONNECT_ATTEMPTS 30
|
#define SERVICE_CONNECT_ATTEMPTS 30
|
||||||
|
@ -251,4 +251,4 @@ ssize_t sock_fd_read(int sock, void *buf, ssize_t bufsize, int *fd)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return size;
|
return size;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue