50c8a820e5
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 |
||
---|---|---|
auto_tests | ||
build | ||
cmake | ||
docs | ||
m4 | ||
other | ||
testing | ||
tools | ||
toxcore | ||
.gitignore | ||
.travis.yml | ||
AUTHORS | ||
ChangeLog | ||
CMakeLists.txt | ||
configure.ac | ||
COPYING | ||
INSTALL | ||
INSTALL.md | ||
libtoxcore.pc.in | ||
Makefile.am | ||
NEWS | ||
README | ||
README.md |
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:
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.