summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md53
1 files changed, 25 insertions, 28 deletions
diff --git a/README.md b/README.md
index b4381bc9..499d8202 100644
--- a/README.md
+++ b/README.md
@@ -1,54 +1,51 @@
1![Project Tox](https://rbt.asia/boards/g/img/0352/79/1373823047559.png "Project Tox") 1![Project Tox](https://rbt.asia/boards/g/img/0352/79/1373823047559.png "Project Tox")
2Project Tox, _also known as Tox_, is a FOSS instant messaging application aimed to replace Skype.<br /> 2Project Tox, _also known as Tox_, is a FOSS (Free and Open Source Software) instant messaging application aimed to replace Skype.<br />
3 3
4With 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.<br /> <br /> 4With 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.<br /> <br />
5 5
6 6
7 7
8 8**IRC**: #tox on freenode, alternatively, you can use the [webchat](http://webchat.freenode.net/?channels=#tox).<br />
9**IRC**: #tox on Freenode, alternatively, you can use the [webchat](http://webchat.freenode.net/?channels=#tox).<br />
10**Website**: [http://tox.im](http://tox.im) 9**Website**: [http://tox.im](http://tox.im)
11 10
12**Website translations**: [see stal888's repository](https://github.com/stal888/ProjectTox-Website)<br/> 11**Website translations**: [see stal888's repository](https://github.com/stal888/ProjectTox-Website)<br/>
13**Qt GUI**: [see nurupo's repository](https://github.com/nurupo/ProjectTox-Qt-GUI) 12**Qt GUI**: [see nurupo's repository](https://github.com/nurupo/ProjectTox-Qt-GUI)
14 13
14**How to build Tox on Linux**: [YouTube video](http://www.youtube.com/watch?v=M4WXE4VKmyg)<br />
15**How to use Tox on Windows**: [YouTube video](http://www.youtube.com/watch?v=qg_j_sDb6WQ)
16
17### Objectives:
15 18
19Keep everything really simple.
16 20
17## The Complex Stuff: 21## The Complex Stuff:
18+ Tox must use UDP simply because you can't hole punch with TCP. It's possible, but it doesn't work all the time. 22+ Tox must use UDP simply because [hole punching](http://en.wikipedia.org/wiki/UDP_hole_punching) with TCP is not as reliable.
19+ Every peer is represented as a byte string (the public key of the peer [client id]) 23+ Every peer is represented as a [byte string](https://en.wikipedia.org/wiki/String_(computer_science)) (the public key of the peer [client ID]).
20+ We're using torrent-style DHT so that peers can find the IP of the other peers when they have their ID. 24+ We're using torrent-style DHT so that peers can find the IP of the other peers when they have their ID.
21+ Once the client has the IP of that peer, they start initiating a secure connection with each other. (See [Crypto](https://github.com/irungentoo/ProjectTox-Core/wiki/Crypto) 25+ Once the client has the IP of that peer, they start initiating a secure connection with each other. (See [Crypto](https://github.com/irungentoo/ProjectTox-Core/wiki/Crypto))
22+ When both peers are securely connect with the encryption, they can securely exchange messages, initiate a video chat, send files, etc.<br /> 26+ When both peers are securely connected, they can exchange messages, initiate a video chat, send files, etc, all using encrypted communications.
23+ Current build status: [![Build Status](https://travis-ci.org/irungentoo/ProjectTox-Core.png?branch=master)](https://travis-ci.org/irungentoo/ProjectTox-Core) 27+ Current build status: [![Build Status](https://travis-ci.org/irungentoo/ProjectTox-Core.png?branch=master)](https://travis-ci.org/irungentoo/ProjectTox-Core)
24 28
25## Roadmap: 29## Roadmap:
26- [x] Get our DHT working perfectly.(Done, needs large scale testing though.) 30- [x] Get our DHT working perfectly. (Done, needs large scale testing though)
27- [x] Reliable connection (See Lossless_UDP protocol) to other peers according to client id. (Done, see DHT_sendfiletest.c for an example) 31- [x] Reliable connection (See Lossless UDP protocol) to other peers according to client ID. (Done, see DHT_sendfiletest.c for an example)
28- [x] Encryption. (Done) 32- [x] Encryption. (Done)
29- [ ] Get a simple text only im client working perfectly. (This is where we are) 33- [ ] Get a simple text only IM client working perfectly. (This is where we are)
30- [ ] Streaming media 34- [ ] Streaming media
31- [ ] ??? 35- [ ] ???
32 36
33For further information, check our [To-do list](https://github.com/irungentoo/ProjectTox-Core/wiki/TODO) 37For further information, check our [To-do list](https://github.com/irungentoo/ProjectTox-Core/wiki/TODO)
34 38
39### Why are you doing this? There are already a bunch of free skype alternatives.
40The goal of this project is to create a configuration-free P2P skype
41replacement. Configuration-free means that the user will simply have to open the program and
42without any account configuration will be capable of adding people to his
43friends list and start conversing with them. There are many so called skype replacements and all of them are either hard to
44configure for the normal user or suffer from being way too centralized.
35 45
36### Important-stuff: 46### Documentation:
37
38Use the same UDP socket for everything
39
40Keep everything really simple.
41
42### Details and Documents:
43 47
44[DHT Protocol](https://github.com/irungentoo/ProjectTox-Core/wiki/DHT)<br /> 48[DHT Protocol](https://github.com/irungentoo/ProjectTox-Core/wiki/DHT)<br />
45[Lossless UDP Protocol](https://github.com/irungentoo/ProjectTox-Core/wiki/Lossless-UDP)<br /> 49[Lossless UDP Protocol](https://github.com/irungentoo/ProjectTox-Core/wiki/Lossless-UDP)<br />
46[Crypto](https://github.com/irungentoo/ProjectTox-Core/wiki/Crypto)<br /> 50[Crypto](https://github.com/irungentoo/ProjectTox-Core/wiki/Crypto)<br />
47[Ideas](https://github.com/irungentoo/ProjectTox-Core/wiki/Ideas) 51[Ideas](https://github.com/irungentoo/ProjectTox-Core/wiki/Ideas)
48
49### Why are you doing this? There are already a bunch of free skype alternatives.
50The goal of this project is to create a configuration-free p2p skype
51replacement. Configuration-free means that the user will simply have to open the program and
52without any account configuration will be capable of adding people to his
53friends list and start conversing with them. There are many so called skype replacements and all of them are either hard to
54configure for the normal user or suffer from being much too centralized.