udphole

Basic UDP wormhole proxy
git clone git://git.finwo.net/app/udphole
Log | Files | Refs | README | LICENSE

commit eaa14b564fd998ac150800c58585a72e8a35bb67
parent 7fa1d929db5b91de6ce7b8d12ddf6aa26ac6da96
Author: Robin Bron <robin.bron@yourhosting.nl>
Date:   Wed,  4 Mar 2026 22:43:38 +0100

Fix execution flags

Diffstat:
MDockerfile | 1+
MMakefile | 2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile @@ -5,6 +5,7 @@ FROM busybox:latest ARG TARGETARCH COPY udphole-linux-${TARGETARCH} /usr/bin/udphole +RUN chmod +x /usr/bin/udphole COPY entrypoint.sh /etc/rc.local RUN chmod +x /etc/rc.local diff --git a/Makefile b/Makefile @@ -7,7 +7,7 @@ SRC:= # UNAME_SYSTEM=$(call lc,$(shell uname -s)) BIN?=udphole -VERSION?=1.3.5 +VERSION?=1.3.6 CC:=gcc CPP:=g++