The future of online communications.
Go to file
2013-07-31 10:25:29 -04:00
cmake Merge branch 'master' of https://github.com/xzfc/ProjectTox-Core into xzfc-master 2013-07-31 07:56:10 -04:00
core Merge branch 'master' of https://github.com/xzfc/ProjectTox-Core into xzfc-master 2013-07-31 07:56:10 -04:00
docs Wrote the commands down and a 'start up' guide. 2013-07-31 05:00:40 -04:00
other Merge pull request #171 from AMDmi3/freebsd-fixes 2013-07-31 04:46:12 -07:00
testing Merge branch 'master' of https://github.com/JFreegman/ProjectTox-Core into JFreegman-master 2013-07-31 10:25:29 -04:00
.gitignore Update .gitignore 2013-07-30 12:02:16 -07:00
.travis.yml Merge branch 'master' into nurupo-master 2013-07-30 18:00:59 -04:00
CMakeLists.txt Fixed build. 2013-07-31 08:35:06 -04:00
COPYING Licenced the code under the GPL for now. 2013-06-26 15:02:42 -04:00
INSTALL.md Adding homebrew commands to INSTALL 2013-07-31 16:05:29 +09:00
README.md Update readme.md 2013-07-31 03:17:40 +02:00
start_guide.de.md Create start_guide.de.md 2013-07-31 15:27:19 +07:00
start_guide.md Create start_guide.md 2013-07-31 15:28:36 +07:00

Project Tox Project Tox, also known as Tox, is a FOSS instant messaging application aimed to replace Skype.

With the rise of governmental monitoring programs, Tox aims to be an easy to use application that allows people to connect with friends and loved ones without the worry of privacy.

IRC: #tox on freenode, alternatively, you can use the webchat.
Website: http://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

The Complex Stuff:

  • Tox must use UDP simply because you can't hole punch with TCP. It's possible, but it doesn't work all the time.
  • 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

Important-stuff:

Use the same UDP socket for everything

Keep everything really simple.

Details and Documents:

DHT Protocol
Lossless UDP Protocol
Crypto
Ideas

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 much too centralized.