Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Added systemd and supervisord config files | ea3d59d854108f28c2d2d10a5af60fe3d66e1f6f | GDR! | 2014-12-11 20:33:54 |
Removed the const qualifier from frame->data | d81429c916e41958483256556dea861cb97487c4 | GDR! | 2014-12-11 19:57:32 |
Updated the IP of MVPS bootstrap node | fbe7d5d1b54b0c67d644ad68ca37088f529d150f | GDR! | 2014-12-11 19:56:04 |
Got rid of some dead code | a60a3712c46bcef7dbb9c56c84693d070230c91b | GDR! | 2014-12-11 19:47:19 |
Make localhost work even if regular name resolution fails | eee06b7d149e00a79897c1d17b0264af99e5149e | GDR! | 2014-12-11 19:38:38 |
Readme tweaks | 6bb15840b0bde8e5949e76873aec418f2b64951f | GDR! | 2014-12-11 18:41:19 |
License | 0974ae043fe15596554512560f72a0a08863e282 | GDR! | 2014-12-11 18:37:29 |
mention build.md | 13f31613c0a89007baef47d8e4d5d1e47c4d4ff9 | GDR! | 2014-12-11 18:32:25 |
Help on -C switch | ab22ba6bcbc395527950fcb9743080c651ab5ef8 | GDR! | 2014-12-11 18:31:13 |
Bare bones documentation | aada851bb2c5576ba9afb1a486ea4b01e0c05ac3 | GDR! | 2014-12-11 18:30:14 |
Initial commit | 4c36e3b71adab6e9f3f08fda3b5c7bf5714ef201 | GDR! | 2014-12-11 13:27:41 |
Server state loading/saving | 7cb0f811c9a573342ec390080ac67e640d0f2e30 | GDR! | 2014-11-26 12:55:12 |
Multi-connection support client-side. | 16add85eb81629b07dd7bdb04fbe30be1410cc83 | GDR! | 2014-11-25 22:09:45 |
TCP works, yay | c311fb3bdd2c26c347c2dd734f97003ac0538037 | GDR! | 2014-11-16 02:54:56 |
creating tunnels half-made | 9b523f2b826dea54613f2eac78f754c9772841b6 | GDR! | 2014-11-15 19:14:53 |
builds well | 3b42ed1ca1be6d1c8f14606befee8b8deae64ac8 | GDR! | 2014-11-10 18:05:14 |
makefile | f877c04fdb45aebff081df4ed1b7fea9bd293fa5 | GDR! | 2014-11-09 16:24:12 |
File | Lines added | Lines deleted |
---|---|---|
scripts/tuntox.conf | 14 | 0 |
scripts/tuntox.service | 20 | 0 |
File scripts/tuntox.conf added (mode: 100644) (index 0000000..eb26587) | |||
1 | ; supervisord config file | ||
2 | ; | ||
3 | ; Copy the tuntox binary to /usr/bin/ before using this file | ||
4 | |||
5 | [program:tuntox] | ||
6 | command = /usr/bin/tuntox | ||
7 | autostart = true | ||
8 | startsecs = 20 | ||
9 | |||
10 | ; change user here | ||
11 | user = proxy | ||
12 | |||
13 | redirect_stderr = true | ||
14 | stdout_logfile = /var/log/tuntox.log |
File scripts/tuntox.service added (mode: 100644) (index 0000000..e4fc3d3) | |||
1 | [Unit] | ||
2 | Description=Tuntox - TCP tunnel over Tox protocol | ||
3 | After=network.target | ||
4 | |||
5 | [Service] | ||
6 | Type=simple | ||
7 | |||
8 | # Copy the tuntox binary to /usr/bin first | ||
9 | |||
10 | ExecStart=/usr/bin/tuntox | ||
11 | Restart=on-failure | ||
12 | |||
13 | # Change this to your user and group for increased security | ||
14 | # Make sure this user/group has access to /etc/tuntox | ||
15 | #User=proxy | ||
16 | #Group=proxy | ||
17 | |||
18 | [Install] | ||
19 | WantedBy=multi-user.target | ||
20 | Alias=tuntox.service |