gdr / tuntox (public) (License: GPLv3) (since 2017-01-24) (hash sha1)
Tunnel TCP connections over the Tox protocol
List of commits:
Subject Hash Author Date (UTC)
Build docker image using musl libc - static builds with name resolution! 33973edcfcbfaadf9fbe7bf0575558ddd980b89f GDR! 2023-03-17 19:50:11
Use friend connection status callback instead of polling 3c400bc4c400ade540d4f54c68d8483fbf32af1e GDR! 2023-03-15 19:26:30
Update links 386a1e69ba2dfda82ba7344ae6e7b16f1d776d39 GDR! 2023-03-15 17:59:43
Fix build 6a859c4f2064030a12833e0e5abb7d4c1d95ebc4 GDR! 2023-03-15 10:11:27
Document whitelist option - closes #56 c498da9d83d47f2ab8e542a2840e46a6d70e23ed GDR! 2023-03-15 10:03:23
Allow wildcards in rules 8d6a48bb3dd59a3193c4e0bfa2397c502186bb87 Andrew Cady 2020-08-21 12:03:58
Fix ping - move to protocol v2 56e4e699d2c62321356909e8a7dd1007134d83c3 GDR! 2023-03-15 08:53:21
-I option for saving tox id to a file 0d835405e8ecb68b5904370632bc3280b3491744 GDR! 2023-03-15 08:17:01
Reject packet type 4b726f549c4f5aa4d80f5ccde0b371d8568e0b55 GDR! 2023-03-15 08:01:48
Multiple -L working a79c3fd655d045683f097675d9acb8e4d582c175 GDR! 2023-03-15 07:59:00
It buildsmake 8011c477ececd3cac58dafc5d54c1721d6550fce GDR! 2023-03-15 06:35:50
Cleanup 450509a24e93e855753f9c51dd04dde7e4ad7e3a GDR! 2023-03-14 20:02:33
Introduce local forward ID 71f125f17cd36582e0dc98e6bc9aca560e445c5a GDR! 2023-03-14 19:53:36
Update distro packages ef1f283cb74e3a1528596bce5ed235e7c02965a3 GDR! 2022-10-17 19:39:58
Update distro packages df86301b9ecd967d09ab0e1e41c51796de4f2878 GDR! 2022-10-17 19:36:49
Clarify proxying in server mode 0216b71250169e6183f36e2e478fcaa15a0dafdd GDR! 2022-10-17 19:27:24
SOCKS5 and HTTP proxies for outgoing connections b8dc5ed52bd8af4f5c7ec5b1ad939f9876abfb45 GDR! 2022-10-17 19:23:11
Support for connecting to Tox via SOCKS5 d39817bf9b92d3dd31e4f56aa7da5cae13bb71e7 GDR! 2022-10-17 18:25:48
include print_version_stdout declaration in main.c, conditionally add -lrt flag for non-macos 555c3a132b8a8a0a3a39c10184c9ae3912193780 Arte Ebrahimi 2022-07-17 23:44:35
Update LICENSE.md abe4bf14de00702f540be8522d4cac06601f61cd GDR! 2022-06-13 08:20:13
Commit 33973edcfcbfaadf9fbe7bf0575558ddd980b89f - Build docker image using musl libc - static builds with name resolution!
Author: GDR!
Author date (UTC): 2023-03-17 19:50
Committer name: GDR!
Committer date (UTC): 2023-03-17 19:50
Parent(s): 3c400bc4c400ade540d4f54c68d8483fbf32af1e
Signer:
Signing key: 557FAEF4E8799852
Signing status: E
Tree: d31d285b42e1744f64de387ac6eb4a2875fe035c
File Lines added Lines deleted
Dockerfile 5 5
gitversion.h 1 1
File Dockerfile changed (mode: 100644) (index 2ad1c03..c443cc9)
1 FROM debian:sid AS builder
2 WORKDIR /root
3 RUN apt update && apt -y install pkg-config build-essential make libtoxcore-dev dh-make git python3-jinja2 python3-requests
4 RUN git clone https://github.com/gjedeer/tuntox.git && cd tuntox && tar -zcf ../tuntox_0.0.10.1.orig.tar.gz . && dpkg-buildpackage -us -uc -v0.0.10.1-1
1 FROM alpine:edge AS builder
2 WORKDIR /
3 RUN echo http://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && apk add toxcore-dev gcc g++ git make musl-dev cmake linux-headers libsodium-static && git clone https://github.com/TokTok/c-toxcore.git /c-toxcore && cd /c-toxcore/ && git submodule update --init && cd /c-toxcore/build/ && cmake .. -DBUILD_TOXAV=OFF -DBOOTSTRAP_DAEMON=off -DBUILD_AV_TEST=off -DFULLY_STATIC=on && make && make install
4 RUN git clone https://github.com/gjedeer/tuntox.git /tuntox && cd /tuntox && make tuntox
5 5
6 6 FROM alpine:latest FROM alpine:latest
7 7
8 8 COPY scripts/tokssh /usr/bin/tokssh COPY scripts/tokssh /usr/bin/tokssh
9 COPY --from=0 /root/tuntox/tuntox /usr/bin/tuntox
9 COPY --from=0 /tuntox/tuntox /usr/bin/tuntox
10 10
11 11 RUN chmod +x /usr/bin/tuntox /usr/bin/tokssh && \ RUN chmod +x /usr/bin/tuntox /usr/bin/tokssh && \
12 12 mkdir /data mkdir /data
File gitversion.h changed (mode: 100644) (index d15b9f1..4ef978c)
1 #define GITVERSION "386a1e69ba2dfda82ba7344ae6e7b16f1d776d39"
1 #define GITVERSION "3c400bc4c400ade540d4f54c68d8483fbf32af1e"
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/gdr/tuntox

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/gdr/tuntox

Clone this repository using git:
git clone git://git.rocketgit.com/user/gdr/tuntox

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main