mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-18 20:47:53 +00:00
Merge branch 'dev' into report-os-arch
This commit is contained in:
commit
52e3d9b804
@ -780,11 +780,25 @@ void PostgreSQL::initializeNetworks()
|
|||||||
fprintf(stderr, "adding networks to redis...\n");
|
fprintf(stderr, "adding networks to redis...\n");
|
||||||
if (_rc->clusterMode) {
|
if (_rc->clusterMode) {
|
||||||
auto tx = _cluster->transaction(_myAddressStr, true, false);
|
auto tx = _cluster->transaction(_myAddressStr, true, false);
|
||||||
tx.sadd(setKey, networkSet.begin(), networkSet.end());
|
uint64_t count = 0;
|
||||||
|
for (std::string nwid : networkSet) {
|
||||||
|
tx.sadd(setKey, nwid);
|
||||||
|
if (++count % 30000 == 0) {
|
||||||
|
tx.exec();
|
||||||
|
tx = _cluster->transaction(_myAddressStr, true, false);
|
||||||
|
}
|
||||||
|
}
|
||||||
tx.exec();
|
tx.exec();
|
||||||
} else {
|
} else {
|
||||||
auto tx = _redis->transaction(true, false);
|
auto tx = _redis->transaction(true, false);
|
||||||
tx.sadd(setKey, networkSet.begin(), networkSet.end());
|
uint64_t count = 0;
|
||||||
|
for (std::string nwid : networkSet) {
|
||||||
|
tx.sadd(setKey, nwid);
|
||||||
|
if (++count % 30000 == 0) {
|
||||||
|
tx.exec();
|
||||||
|
tx = _redis->transaction(true, false);
|
||||||
|
}
|
||||||
|
}
|
||||||
tx.exec();
|
tx.exec();
|
||||||
}
|
}
|
||||||
fprintf(stderr, "done.\n");
|
fprintf(stderr, "done.\n");
|
||||||
@ -1005,14 +1019,24 @@ void PostgreSQL::initializeMembers()
|
|||||||
fprintf(stderr, "Load member data into redis...\n");
|
fprintf(stderr, "Load member data into redis...\n");
|
||||||
if (_rc->clusterMode) {
|
if (_rc->clusterMode) {
|
||||||
auto tx = _cluster->transaction(_myAddressStr, true, false);
|
auto tx = _cluster->transaction(_myAddressStr, true, false);
|
||||||
|
uint64_t count = 0;
|
||||||
for (auto it : networkMembers) {
|
for (auto it : networkMembers) {
|
||||||
tx.sadd(it.first, it.second);
|
tx.sadd(it.first, it.second);
|
||||||
|
if (++count % 30000 == 0) {
|
||||||
|
tx.exec();
|
||||||
|
tx = _cluster->transaction(_myAddressStr, true, false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
tx.exec();
|
tx.exec();
|
||||||
} else {
|
} else {
|
||||||
auto tx = _redis->transaction(true, false);
|
auto tx = _redis->transaction(true, false);
|
||||||
|
uint64_t count = 0;
|
||||||
for (auto it : networkMembers) {
|
for (auto it : networkMembers) {
|
||||||
tx.sadd(it.first, it.second);
|
tx.sadd(it.first, it.second);
|
||||||
|
if (++count % 30000 == 0) {
|
||||||
|
tx.exec();
|
||||||
|
tx = _redis->transaction(true, false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
tx.exec();
|
tx.exec();
|
||||||
}
|
}
|
||||||
|
@ -71,7 +71,7 @@ else
|
|||||||
override CFLAGS+=-Wall -Wno-deprecated -pthread $(INCLUDES) -DNDEBUG $(DEFS)
|
override CFLAGS+=-Wall -Wno-deprecated -pthread $(INCLUDES) -DNDEBUG $(DEFS)
|
||||||
CXXFLAGS?=-O3 -fstack-protector
|
CXXFLAGS?=-O3 -fstack-protector
|
||||||
override CXXFLAGS+=-Wall -Wno-deprecated -std=c++17 -pthread $(INCLUDES) -DNDEBUG $(DEFS)
|
override CXXFLAGS+=-Wall -Wno-deprecated -std=c++17 -pthread $(INCLUDES) -DNDEBUG $(DEFS)
|
||||||
LDFLAGS=-pie -Wl,-z,relro,-z,now
|
LDFLAGS?=-pie -Wl,-z,relro,-z,now
|
||||||
ZT_CARGO_FLAGS=--release
|
ZT_CARGO_FLAGS=--release
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
CC=clang
|
CC=clang
|
||||||
CXX=clang++
|
CXX=clang++
|
||||||
TOPDIR=$(shell PWD)
|
TOPDIR=$(shell pwd)
|
||||||
|
|
||||||
INCLUDES=-I$(shell PWD)/rustybits/target -isystem $(TOPDIR)/ext -I$(TOPDIR)/ext/prometheus-cpp-lite-1.0/core/include -I$(TOPDIR)/ext-prometheus-cpp-lite-1.0/3rdparty/http-client-lite/include -I$(TOPDIR)/ext/prometheus-cpp-lite-1.0/simpleapi/include
|
INCLUDES=-I$(shell pwd)/rustybits/target -isystem $(TOPDIR)/ext -I$(TOPDIR)/ext/prometheus-cpp-lite-1.0/core/include -I$(TOPDIR)/ext-prometheus-cpp-lite-1.0/3rdparty/http-client-lite/include -I$(TOPDIR)/ext/prometheus-cpp-lite-1.0/simpleapi/include
|
||||||
DEFS=
|
DEFS=
|
||||||
LIBS=
|
LIBS=
|
||||||
ARCH_FLAGS=-arch x86_64 -arch arm64
|
ARCH_FLAGS=-arch x86_64 -arch arm64
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
## Docker image for Synology's DSM7
|
## Docker image for Synology's DSM7
|
||||||
|
|
||||||
Documentation: [docs.zerotier.com/devices/synology](https://docs.zerotier.com/devices/synology)
|
Documentation: [docs.zerotier.com/devices/synology](https://docs.zerotier.com/devices/synology)
|
||||||
|
|
||||||
|
### Build & Push changes to DockerHub
|
||||||
|
```shell
|
||||||
|
./build.sh build
|
||||||
|
```
|
||||||
|
@ -3,19 +3,17 @@
|
|||||||
ZTO_VER=$(git describe --tags $(git rev-list --tags --max-count=1))
|
ZTO_VER=$(git describe --tags $(git rev-list --tags --max-count=1))
|
||||||
ZTO_COMMIT=$(git rev-parse HEAD)
|
ZTO_COMMIT=$(git rev-parse HEAD)
|
||||||
|
|
||||||
build()
|
build() {
|
||||||
{
|
|
||||||
sudo docker build --load --rm -t zerotier-synology . --build-arg ZTO_COMMIT=${ZTO_COMMIT} --build-arg ZTO_VER=${ZTO_VER}
|
|
||||||
LATEST_DOCKER_IMAGE_HASH=$(sudo docker images -q zerotier-synology)
|
|
||||||
sudo docker tag ${LATEST_DOCKER_IMAGE_HASH} zerotier/zerotier-synology:${ZTO_VER}
|
|
||||||
sudo docker tag ${LATEST_DOCKER_IMAGE_HASH} zerotier/zerotier-synology:latest
|
|
||||||
}
|
|
||||||
|
|
||||||
push()
|
|
||||||
{
|
|
||||||
sudo docker login --username=${DOCKERHUB_USERNAME}
|
sudo docker login --username=${DOCKERHUB_USERNAME}
|
||||||
sudo docker push zerotier/zerotier-synology:${ZTO_VER}
|
|
||||||
sudo docker push zerotier/zerotier-synology:latest
|
sudo docker buildx build \
|
||||||
|
--push \
|
||||||
|
--platform linux/arm/v7,linux/arm64/v8,linux/amd64 \
|
||||||
|
--tag zerotier/zerotier-synology:${ZTO_VER} \
|
||||||
|
--tag zerotier/zerotier-synology:latest \
|
||||||
|
--build-arg ZTO_COMMIT=${ZTO_COMMIT} \
|
||||||
|
--build-arg ZTO_VER=${ZTO_VER} \
|
||||||
|
.
|
||||||
}
|
}
|
||||||
|
|
||||||
"$@"
|
"$@"
|
||||||
|
@ -91,7 +91,7 @@
|
|||||||
<NMakeOutput>
|
<NMakeOutput>
|
||||||
</NMakeOutput>
|
</NMakeOutput>
|
||||||
<NMakeCleanCommandLine>cargo clean</NMakeCleanCommandLine>
|
<NMakeCleanCommandLine>cargo clean</NMakeCleanCommandLine>
|
||||||
<NMakeReBuildCommandLine>cargo clean & cargo build --release --target=x86_64-pc-windows-msvc</NMakeReBuildCommandLine>
|
<NMakeReBuildCommandLine>cargo clean & cargo build -p zeroidc --release --target=x86_64-pc-windows-msvc</NMakeReBuildCommandLine>
|
||||||
<NMakePreprocessorDefinitions>NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
|
<NMakePreprocessorDefinitions>NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
||||||
|
Loading…
Reference in New Issue
Block a user