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)
Fix wrong return type of functions 3d2f21ac28057f19bf367b7732039102e846b16f GDR! 2020-04-21 18:00:37
Windows FAQ 537575ce348921b569d9e45542681278ed5d97be GDR! 2020-04-21 17:27:00
Docker readme e168cc7f097c964c9551de625db089a630893e3e GDR! 2020-04-21 15:46:16
Remove my own dead relay 900d3300badd23734d7298596ef288d0e83a6a9e GDR! 2020-01-03 12:41:12
Add sonar cloud file 439297a35cec942fd6db1534a649f4b9471bb842 GDR! 2019-12-12 18:55:23
Move friend-connection-lost to a separate state 121acd73ddba12659713f27abef7524b9a0c6a48 GDR! 2018-11-17 11:23:57
Retry on lost friend connection 03d83602d3a328d89b806e23c35644ec3908dc1f GDR! 2018-11-17 10:42:55
Print toxcore version in debug output 3adc626eb1646ee3456ca282e1855142f9f935e0 GDR! 2018-10-25 09:39:47
Version bump to 0.0.9, new bootstrap nodes 896775c6089baa24edee06e04f5b83c3bb3bef5d GDR! 2018-10-22 11:53:56
Recommend NoScriptâ„¢ for optimal viewing experience d2e2adc947ec929b831d6369421cd585b9e3d66b GDR! 2018-05-04 18:22:30
Fix typo in tokssh help 9f245199da5a9e82e76177832153053bc32852e9 GDR! 2018-04-10 09:50:13
Add config file to tokssh to map a memorable name to toxid b4444039e733acc3e20e5b85749d95dd9eae298b Fabio 2018-04-10 08:58:43
Put a shameful todo 64277a0a2f4cb8902c77f4d9867d18d980e51bc8 GDR! 2018-03-24 09:39:47
Friend connection status printed correctly 74a5c4adbfd0a0a4a1dda3aedc875bc04bcf3c34 GDR! 2018-03-24 09:19:12
Print DHT key in debug log 3b26f4eac390008113ca0d5c0978ed7da19dfa34 GDR! 2018-03-24 09:01:12
Log friend connection status changes f8f68e77d95bc81060c311cf2b92e883db3bfa79 GDR! 2018-03-24 08:58:12
Move FAQ link up 826ef1b9deea8d3f5f34ef523205571f8d9f5975 GDR! 2018-03-24 08:33:00
FAQ added 62d56bb6f4fc69bf5f4387fe8bdbe56c1590eefe GDR! 2018-03-24 08:25:22
c-toxcore 0.2.0 compatible pkg-config lib deps ef49516b967e1b3a1af777725554e5081ee0c688 GDR! 2018-03-12 19:59:44
Attempt at fixing double-free in issue #50 a6e3e443c5b788c7d1b43a1f9118d772a5a18f8d GDR! 2018-02-06 11:57:33
Commit 3d2f21ac28057f19bf367b7732039102e846b16f - Fix wrong return type of functions
Author: GDR!
Author date (UTC): 2020-04-21 18:00
Committer name: GDR!
Committer date (UTC): 2020-04-21 18:00
Parent(s): 537575ce348921b569d9e45542681278ed5d97be
Signer:
Signing key: 91E13DD923FE501F
Signing status: E
Tree: bb75edaa5a8caa6529276ac18c7dcd05d742a2d6
File Lines added Lines deleted
client.c 12 12
gitversion.h 1 1
File client.c changed (mode: 100644) (index 517b89e..3073e5d)
... ... int handle_server_tcp_frame(protocol_frame *rcvd_frame)
225 225 return 0; return 0;
226 226 } }
227 227
228 /* Delete tunnel and clear client-side fdset */
229 void client_close_tunnel(tunnel *tun)
230 {
231 if(tun->sockfd)
232 {
233 FD_CLR(tun->sockfd, &client_master_fdset);
234 }
235
236 tunnel_delete(tun);
237 }
238
228 239 /* Handle close-tunnel frame recived from the server */ /* Handle close-tunnel frame recived from the server */
229 240 int handle_server_tcp_fin_frame(protocol_frame *rcvd_frame) int handle_server_tcp_fin_frame(protocol_frame *rcvd_frame)
230 241 { {
 
... ... int handle_server_tcp_fin_frame(protocol_frame *rcvd_frame)
250 261 return 0; return 0;
251 262 } }
252 263
253 /* Delete tunnel and clear client-side fdset */
254 int client_close_tunnel(tunnel *tun)
255 {
256 if(tun->sockfd)
257 {
258 FD_CLR(tun->sockfd, &client_master_fdset);
259 }
260
261 tunnel_delete(tun);
262 }
263
264 264 /* Close and delete all tunnels (when server went offline) */ /* Close and delete all tunnels (when server went offline) */
265 int client_close_all_connections()
265 void client_close_all_connections()
266 266 { {
267 267 tunnel *tmp = NULL; tunnel *tmp = NULL;
268 268 tunnel *tun = NULL; tunnel *tun = NULL;
File gitversion.h changed (mode: 100644) (index c50f156..2c9a605)
1 #define GITVERSION "900d3300badd23734d7298596ef288d0e83a6a9e"
1 #define GITVERSION "537575ce348921b569d9e45542681278ed5d97be"
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