The future of online communications.
Go to file
Sergey 'Jin' Bostandzhyan 3f24f04876 Setup autotools to read .so version info from a separate file
We want to use the same libtool style .so versions in both build systems,
ideally both systems should read the version information from the same
configuration file.

This commit introduces an so.version configuration file and sets up
the autotools to use it.

The version numbers in so.version define the ABI compatibility and should be
updated prior to each release.

implements #323
2017-01-18 11:20:07 +01:00
auto_tests Set up autotools build to build against vanilla NaCl. 2017-01-08 15:27:26 +00:00
build Setup autotools to read .so version info from a separate file 2017-01-18 11:20:07 +01:00
cmake Add soversion to library files to generate proper symlinks 2017-01-08 19:18:06 +01:00
dist-build Removed unnecessary parameters 2014-08-25 10:00:09 +04:00
docs Rebuild apidsl'd headers in cmake. 2016-10-02 23:54:03 +01:00
m4 Build system now automatically enables epoll support in TCP server 2014-07-17 20:44:49 -04:00
other Fix NaCl build: tar was called incorrectly. 2017-01-08 16:37:56 +00:00
super_donators Added my pixfile! 2015-12-12 20:40:57 +01:00
testing Fixed FreeBSD build failure due to undefined MSG_NOSIGNAL. 2017-01-13 00:24:00 -08:00
toxav Setup autotools to read .so version info from a separate file 2017-01-18 11:20:07 +01:00
toxcore Setup autotools to read .so version info from a separate file 2017-01-18 11:20:07 +01:00
toxdns Setup autotools to read .so version info from a separate file 2017-01-18 11:20:07 +01:00
toxencryptsave Setup autotools to read .so version info from a separate file 2017-01-18 11:20:07 +01:00
.gitignore Revert "Revert "Portability fixes"" 2017-01-06 04:20:00 -08:00
.travis.yml Don't use git.depth=1 anymore. 2017-01-07 21:50:20 +00:00
autogen.sh Some configuration/build fixes, so building basicaly everything else than the library can be disabled 2013-10-07 02:01:16 +02:00
circle.yml Add CircleCI Support 2017-01-03 11:30:57 +00:00
CMakeLists.txt Make building DHT_bootstrap in cmake optional. 2017-01-16 22:43:41 +00:00
configure.ac Setup autotools to read .so version info from a separate file 2017-01-18 11:20:07 +01:00
COPYING Removed the unused autotools files 2015-10-05 15:18:55 -07:00
DONATORS If we receive a packet from a node we are searching for, ping it. 2015-12-08 15:43:03 -05:00
INSTALL.md docs(INSTALL): Bring back autotools instructions 2017-01-05 09:32:08 +00:00
libtoxav.pc.in Build system fixes. 2014-12-18 10:04:31 -05:00
libtoxcore.pc.in Move -ltoxcore to be the first linked library 2016-12-12 14:09:34 +01:00
Makefile.am Setup autotools to read .so version info from a separate file 2017-01-18 11:20:07 +01:00
README.md Update readme, moved the roadmap to a higher position 2016-10-17 11:26:17 -07:00
so.version Setup autotools to read .so version info from a separate file 2017-01-18 11:20:07 +01:00
tox.spec.in Add spec file for rpm generation 2015-03-04 00:35:25 +01:00

Project Tox


Current build status: Build Status Current Coverage: Coverage Status

Website | Wiki | Blog | FAQ | Binaries/Downloads | Clients | Compiling

IRC Channels: Users: #tox@freenode, Developers: #toktok@freenode

Toxcore Development Roadmap

This Roadmap is somewhat tentative, but should give you a good idea of where we're going, and where we've been.

Currently unsorted, the following is intended to function as a discussion guide to developers/contributors.

In Progress

  • Toxcore
    • 100% unit testing
    • Make ToxAV stateless
    • Allow a single toxcore instance to handle multiple keypairs (or 'clients')
    • Consistent naming scheme throughout toxcore
    • Make toxcore stateless
  • Messenger
    • Improve group chat implementation
    • Improve A/V implementation
    • Multiple device support

Done

  • Create Toxcore
  • Create DHT
  • Create Onion
  • Implement Crypto
  • Create Messenger

Q&A:

What is Tox?

Tox is a fully encrypted, censor resistant, private, distributed network library with a focus on personal communications.

No, really, what's Tox?

It's a VERY secure Instant Messenger that supports Text, Audio/Video calls, group chats, audio group chats, and file transfers. There's dozens, but our advantage is we put security first, from day 1. We didn't decide to add it in after.

What are your goals with Tox?

We want Tox to be as simple as possible while remaining as secure as possible.

Documentation:

The Complex Stuff:

UDP vs. TCP

Tox must use UDP simply because hole punching with TCP is not as reliable. However, Tox does use TCP relays as a fallback if it encounters a firewall that prevents UDP hole punching.

Connecting & Communicating

Every peer is represented as a byte string (the public key [Tox ID] of the peer). By using torrent-style DHT, peers can find the IP of other peers by using their Tox ID. Once the IP is obtained, peers can initiate a secure connection with each other. Once the connection is made, peers can exchange messages, send files, start video chats, etc. using encrypted communications.