summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index e6e6fe5d..19bbb759 100644
--- a/README.md
+++ b/README.md
@@ -20,14 +20,14 @@ With the rise of governmental monitoring programs, Tox aims to be an easy to use
20+ Every peer is represented as a byte string (the public key of the peer [client id]) 20+ Every peer is represented as a byte string (the public key of the peer [client id])
21+ We're using torrent-style DHT so that peers can find the IP of the other peers when they have their ID. 21+ We're using torrent-style DHT so that peers can find the IP of the other peers when they have their ID.
22+ 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+ 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))
23+ When both peers are securely connect with the encryption, they can securely exchange messages, initiate a video chat, send files, etc.<br /> 23+ When both peers are securely connected, they can exchange messages, initiate a video chat, send files, etc, all using encrypted communications.<br />
24+ Current build status: [![Build Status](https://travis-ci.org/irungentoo/ProjectTox-Core.png?branch=master)](https://travis-ci.org/irungentoo/ProjectTox-Core) 24+ Current build status: [![Build Status](https://travis-ci.org/irungentoo/ProjectTox-Core.png?branch=master)](https://travis-ci.org/irungentoo/ProjectTox-Core)
25 25
26## Roadmap: 26## Roadmap:
27- [x] Get our DHT working perfectly.(Done, needs large scale testing though.) 27- [x] Get our DHT working perfectly.(Done, needs large scale testing though.)
28- [x] Reliable connection (See Lossless_UDP protocol) to other peers according to client id. (Done, see DHT_sendfiletest.c for an example) 28- [x] Reliable connection (See Lossless_UDP protocol) to other peers according to client id. (Done, see DHT_sendfiletest.c for an example)
29- [x] Encryption. (Done) 29- [x] Encryption. (Done)
30- [ ] Get a simple text only im client working perfectly. (This is where we are) 30- [ ] Get a simple text only IM client working perfectly. (This is where we are)
31- [ ] Streaming media 31- [ ] Streaming media
32- [ ] ??? 32- [ ] ???
33 33