diff options
author | irungentoo <irungentoo@gmail.com> | 2013-07-31 04:43:12 -0700 |
---|---|---|
committer | irungentoo <irungentoo@gmail.com> | 2013-07-31 04:43:12 -0700 |
commit | 943694a7463ee7fc87e3e6742dbe881e7212be67 (patch) | |
tree | 86aba34c15dc9190e86ec4ca1987b0575de1c571 | |
parent | f2d310b91a3eb6f4bce119ff514cb8d329b1fdbe (diff) | |
parent | bd8ba0bd6e4a71eab2216749d732aa40088c95b8 (diff) |
Merge pull request #190 from pyrobisqit/patch-1
Update readme.md
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||