The future of online communications.
Go to file
jin-eld 50c8a820e5 Implemented autotools based build scripts
supported options:

--with-dependency-search=DIR    will tell configure to look for various
dependencies in DIR/include and DIR/lib

Alternatively you can also specify libsodium header and libs location
with --with-libsodium-headers and --with-libsodium-libs if it is
installed elsewhere.

Ncurses and libconfig are handled via the default pkg-config way, see
./configure --help=short for detailed information.

The tox library is compiled as libtoxcore in shared and static variants,
public headers are installed to ${prefix}/include/tox

A pkg-config libtoxcore.pc configuration file is provided.

Use ./configure --help for a full list of configure options or
./configure --help=short for the options that I added.

To generate the configure script after pulling from git use:
autoreconf -i

To generate a release tarball use:
make dist

Unit tests are handled by the libcheck library integration that is provided
by autotools, use:
make check

to compile and run the tests.

Unit tests are currently optional, i.e. - if the check library is not
found on the system, then tests will be disabled. Same goes for nTox and
DHT bootstrap daemon - they will be enabled or disabled depending on the
availability of ncurses (for nTox) or libconfig (for DHT bootstrap
daemon).

The above can be also tuned by:
--enable-tests / --disable-tests
--enable-ntox / --disable-ntox
--enable-dht-bootstrap-daemon / --disable-dht-bootstrap-daemon
2013-08-24 03:25:07 +03:00
auto_tests Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
build Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
cmake Add pkg-config file 2013-08-23 15:31:24 -05:00
docs Added docs detailing containing latest protocol changes. 2013-08-16 20:02:53 -04:00
m4 Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
other Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
testing Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
tools core,nTox,toxic - Fix for Issue #453. Refactoring w/astyle. 2013-08-14 19:10:03 -07:00
toxcore Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
.gitignore Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
.travis.yml Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
AUTHORS Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
ChangeLog Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
CMakeLists.txt Rename core directory because of autoconf name clash 2013-08-24 03:25:07 +03:00
configure.ac Implemented autotools based build scripts 2013-08-24 03:25:07 +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 Add entry to allow make install 2013-08-23 14:10:17 -05:00
libtoxcore.pc.in Implemented autotools based build scripts 2013-08-24 03:25:07 +03:00
Makefile.am Implemented autotools based build scripts 2013-08-24 03:25:07 +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 Logo is now hosted on the repo. 2013-08-14 12:38:10 -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: