summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNemDiggers <horo@ipwnage.com>2013-07-19 00:10:18 -0400
committerNemDiggers <horo@ipwnage.com>2013-07-19 00:10:18 -0400
commit13c5765a6c6ab5907b98548643d077e5104d68ac (patch)
treee08de77b1ccaa234cd86b7d93c95aa5f4a00951e
parent6c2b0e7815d20e2e027fddb737bc0c87ad48b868 (diff)
Schematics & build status
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index d107b086..c56de169 100644
--- a/README.md
+++ b/README.md
@@ -11,13 +11,13 @@ With the rise of governmental monitoring programs, Tox aims to be an easy to use
11 11
12 12
13 13
14## Geeky Stuff: 14## The Complex Stuff:
15+ Tox must use UDP simply because you can't hole punch with TCP. It's possible, but it doesn't work all the time. 15+ Tox must use UDP simply because you can't hole punch with TCP. It's possible, but it doesn't work all the time.
16+ Every peer is represented as a byte string (the public key of the peer [client id]) 16+ Every peer is represented as a byte string (the public key of the peer [client id])
17+ We're using torrent-style DHT so that peers can find the IP of the other peers when they have their ID. 17+ We're using torrent-style DHT so that peers can find the IP of the other peers when they have their ID.
18+ 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/blob/master/docs/Crypto.txt)) 18+ 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/blob/master/docs/Crypto.txt))
19+ When both peers are securely connect with the encryption, they can securely exchange messages, initiate a video chat, send files, etc. 19+ When both peers are securely connect with the encryption, they can securely exchange messages, initiate a video chat, send files, etc.
20 20-[![Build Status](https://travis-ci.org/irungentoo/ProjectTox-Core.png?branch=master)](https://travis-ci.org/irungentoo/ProjectTox-Core)
21 21
22## Roadmap: 22## Roadmap:
23- [x] Get our DHT working perfectly.(Done, needs large scale testing though.) 23- [x] Get our DHT working perfectly.(Done, needs large scale testing though.)