diff options
Diffstat (limited to 'docs/TODO.txt')
-rw-r--r-- | docs/TODO.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/TODO.txt b/docs/TODO.txt index 10bf0991..9f999f09 100644 --- a/docs/TODO.txt +++ b/docs/TODO.txt | |||
@@ -7,6 +7,9 @@ Things to do now: | |||
7 | -Get a basic im client working using the now completed DHT implementation to find the ips of your friends. | 7 | -Get a basic im client working using the now completed DHT implementation to find the ips of your friends. |
8 | 8 | ||
9 | -Find some good encryption libraries. | 9 | -Find some good encryption libraries. |
10 | I found this: http://libtom.org/ | ||
11 | It looks pretty good so far | ||
12 | It's licenced under the WTFPL which is perfect. | ||
10 | 13 | ||
11 | -Figure out the best way to do "lossless" UDP. | 14 | -Figure out the best way to do "lossless" UDP. |
12 | 15 | ||
@@ -22,4 +25,8 @@ Less important. | |||
22 | 25 | ||
23 | -Offline messaging protocol (text only) | 26 | -Offline messaging protocol (text only) |
24 | Use your friends.(or maybe the people closest (mathematically by comparing client_id's) to you or the friend you want to send the message to). | 27 | Use your friends.(or maybe the people closest (mathematically by comparing client_id's) to you or the friend you want to send the message to). |
25 | The message will not be very big. Let's say we limit the maximum number of bytes for one to 1024, it means if every client stores 1024 offline messages it only takes 1 MB of ram. \ No newline at end of file | 28 | The message will not be very big. Let's say we limit the maximum number of bytes for one to 1024, it means if every client stores 1024 offline messages it only takes 1 MB of ram. |
29 | |||
30 | -IPv6 | ||
31 | Currently the core only supports ipv4 | ||
32 | |||