The future of online communications.
Go to file
2013-08-08 13:04:48 +02:00
auto_tests Disable failing test assertion 2013-08-08 13:04:15 +02:00
cmake I suppose adding the FindCheck script would be nice 2013-08-07 16:26:07 -04:00
core Refactored an expression 2013-08-07 20:24:06 -04:00
docs Update install.rst 2013-08-05 15:53:50 -07:00
other core: getaddrinfo() lookup error handling 2013-08-01 11:54:06 -07:00
testing Merge branch 'master' of http://github.com/irungentoo/ProjectTox-Core 2013-08-07 19:18:40 -04:00
.gitignore Add sodium/ to .gitignore 2013-07-31 23:31:06 -04:00
.travis.yml Run unit tests with travis 2013-08-08 13:04:48 +02:00
CMakeLists.txt added files for unit tests 2013-08-07 00:18:27 -04:00
COPYING Licenced the code under the GPL for now. 2013-06-26 15:02:42 -04:00
INSTALL.md Added check to INSTALL.md, the addition of autotests requires it 2013-08-07 17:01:36 -07:00
README.md Merge pull request #304 from yati-sagade/master 2013-08-03 12:59:50 -07: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: see stal888's repository
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

Roadmap:

  • Get our DHT working perfectly. (Done, needs large scale testing though)
  • Reliable connection (See Lossless UDP protocol) to other peers according to client ID. (Done, see DHT_sendfiletest.c for an example)
  • Encryption. (Done)
  • [ ] Get a simple text only IM client working perfectly. (This is where we are)
  • [ ] Streaming media
  • [ ] ???

For further information, check our To-do list

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: