The future of online communications.
Go to file
Coren[m] 513e37815d tox.h, DHT.h:
- tox_bootstrap_ex(), DHT_bootstrap_ex() renamed to tox_bootstrap_from_address(), DHT_bootstrap_from_address()
- (handle_)sendnodes_ex() renamed to (handle_)sendnodes_ipv6()
- only sending sendnodes_ipv6() if we're actually IPv6 enabled
- changed comments to conform better

nTox.c, Messenger_text.c, DHT_test.c, DHT_bootstrap.c:
- fallout from *_ex() to *_from_address()

DHT_bootstrap.c:
- corrected a potentially wrong info message

util.c:
- fixed logfile name: now (funcptr) => now() (number)

network.c:
- addead comment about the necessity of bind() to succeed

auto_test/messenger_test.c:
- defaulting ipv6enabled to TOX_ENABLE_IPV6_DEFAULT

LAN_discovery.c:
- slight cleanup and comments for clarity
2013-09-11 20:50:15 +02:00
auto_tests tox.h, DHT.h: 2013-09-11 20:50:15 +02:00
build Forward compatibility with automake 1.14 2013-09-01 20:39:02 +03:00
docs Update TODO 2013-09-09 11:01:04 -03:00
m4 Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
other tox.h, DHT.h: 2013-09-11 20:50:15 +02:00
testing tox.h, DHT.h: 2013-09-11 20:50:15 +02:00
tools core,nTox,toxic - Fix for Issue #453. Refactoring w/astyle. 2013-08-14 19:10:03 -07:00
toxcore tox.h, DHT.h: 2013-09-11 20:50:15 +02:00
.gitignore Add .dirstamp to gitignore 2013-09-01 21:43:46 +03:00
.travis.yml Removed useless line from travis. 2013-08-31 12:03:19 -04:00
AUTHORS Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
autogen.sh Update autogen.sh 2013-09-01 16:19:14 -04:00
ChangeLog Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
configure.ac Allow to build vs nacl instead of libsodium 2013-09-06 22:54:45 +03:00
COPYING Licenced the code under the GPL for now. 2013-06-26 15:02:42 -04:00
INSTALL Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
INSTALL.md Update INSTALL.md 2013-09-03 13:23:40 +03:00
libtoxcore.pc.in Let clients include <tox/tox.h> 2013-08-24 04:41:35 +03:00
Makefile.am Forward compatibility with automake 1.14 2013-09-01 20:39:02 +03:00
NEWS Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
README Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
README.md Updated README. 2013-09-08 16:08:33 -04:00

Project Tox Project Tox, also known as Tox, is a FOSS (Free and Open Source Software) instant messaging application aimed to replace Skype.

With the rise of governmental monitoring programs, Tox aims to be an easy to use, all-in-one communication platform (including audio, and videochats in the future) that ensures their users full privacy and secure message delivery.

IRC: #tox on freenode, alternatively, you can use the webchat.
Website: http://tox.im Developer Blog: http://dev.tox.im

Website translations: here
Qt GUI: see nurupo's repository

How to build Tox on Linux: YouTube video
How to use Tox on Windows: YouTube video
For Mac OSX read INSTALL.md

Objectives:

Keep everything really simple.

The Complex Stuff:

  • Tox must use UDP simply because hole punching with TCP is not as reliable.
  • Every peer is represented as a byte string (the public key of the peer [client ID]).
  • We're using torrent-style DHT so that peers can find the IP of the other peers when they have their ID.
  • Once the client has the IP of that peer, they start initiating a secure connection with each other. (See Crypto)
  • When both peers are securely connected, they can exchange messages, initiate a video chat, send files, etc, all using encrypted communications.
  • Current build status: Build Status

TODO:

Why are you doing this? There are already a bunch of free skype alternatives.

The goal of this project is to create a configuration-free P2P skype replacement. Configuration-free means that the user will simply have to open the program and without any account configuration will be capable of adding people to his friends list and start conversing with them. There are many so-called skype replacements and all of them are either hard to configure for the normal user or suffer from being way too centralized.

Documentation: