The future of online communications.
Go to file
Coren[m] b5db32585a Patch to allow DHT_bootstrap to also do LAN discovery.
This patch inserts LAN discovery in DHT_bootstrap, allowing it to find clients even if it's run parameterless (and clients don't connect to it directly, e.g. because the port is already bound to a different client).

- moves the #define of LAN_DISCOVERY_INTERVAL from Messenger.c to LAN_discovery.h
- includes LAN_discovery.h into DHT_bootstrap.c
- DHT_bootstrap.c sends and accepts LAN_discovery packets
2013-09-12 19:09:25 +02:00
auto_tests Fixed building with NaCl. 2013-09-10 17:15:26 -04: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 Patch to allow DHT_bootstrap to also do LAN discovery. 2013-09-12 19:09:25 +02:00
testing move group chats to /toxcore 2013-09-09 14:16:53 -04:00
tools core,nTox,toxic - Fix for Issue #453. Refactoring w/astyle. 2013-08-14 19:10:03 -07:00
toxcore Patch to allow DHT_bootstrap to also do LAN discovery. 2013-09-12 19:09:25 +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: