The future of online communications.
Go to file
grimd34th 2a1093a0e3 Update autogen.sh
Updated autogen.sh to strictly run only the autoreconf
2013-09-01 16:19:14 -04:00
auto_tests Properly fixed test. 2013-08-31 12:49:22 -04:00
build Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
docs/updates Removed out of date documentation. 2013-08-31 11:59:35 -04:00
m4 Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
other Fixed warnings and moved hex_string_to_bin to testing/ 2013-08-30 08:16:34 -04:00
testing Fixed warnings and moved hex_string_to_bin to testing/ 2013-08-30 08:16:34 -04:00
tools core,nTox,toxic - Fix for Issue #453. Refactoring w/astyle. 2013-08-14 19:10:03 -07:00
toxcore Fixed bug. 2013-08-31 12:23:20 -04:00
.gitignore Implemented autotools based build scripts 2013-08-24 03:25:07 +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 Merge branch 'master' of https://github.com/JamoBox/ProjectTox-Core into JamoBox-master 2013-08-29 17:55:58 -04: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-01 00:04:15 +08:00
libtoxcore.pc.in Let clients include <tox/tox.h> 2013-08-24 04:41:35 +03:00
Makefile.am Fixed build. 2013-08-31 12:08:54 -04: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 Removed now dead link from readme. 2013-08-31 12:11:39 -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

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: