diff options
Diffstat (limited to 'todo.txt')
-rw-r--r-- | todo.txt | 87 |
1 files changed, 25 insertions, 62 deletions
@@ -1,17 +1,23 @@ | |||
1 | Online help. | 1 | ui: Online help. |
2 | 2 | ||
3 | Change refresh algorithm to refresh farther away buckets before closer ones. | 3 | ui: Explicit routing table node deletion. "forget" command. |
4 | 4 | ||
5 | Remove (without replacement) stale routing nodes at some point. | 5 | ui: a - with no arguments would list the currently active recuring publications. |
6 | 6 | ||
7 | Explicit routing table node deletion. "forget" command. | 7 | kademlia: Change refresh algorithm to refresh farther away buckets before closer ones. |
8 | 8 | ||
9 | Debug why disabled-6 does not get peer/key storage. | 9 | kademlia: Remove (without replacement) stale routing nodes at some point. |
10 | 10 | ||
11 | Give different networks a different minimum count to terminate bootstrap. Imperically, | 11 | bug: Why does running without -4 (ipv4-only) on an ipv6-disabled computer prevent |
12 | tox4: 6 buckets, tox6: 3 buckets | 12 | storage of bt peers and tox keys in the local store? |
13 | 13 | ||
14 | handle exception: dhtd: Network.Socket.sendTo: does not exist (Network is unreachable | 14 | kademlia: Give different networks a different minimum count to terminate |
15 | bootstrap. Imperically, tox4: 6 buckets, tox6: 3 buckets | ||
16 | |||
17 | bug: Unhandled exception: dhtd: Network.Socket.sendTo: does not exist (Network | ||
18 | is unreachable | ||
19 | |||
20 | tox: Don't store ourself in the kademlia buckets. | ||
15 | 21 | ||
16 | tox: fallback to https://nodes.tox.chat/json | 22 | tox: fallback to https://nodes.tox.chat/json |
17 | 23 | ||
@@ -21,11 +27,9 @@ tox: hardening get-nodes test request. | |||
21 | 27 | ||
22 | tox: nat ping | 28 | tox: nat ping |
23 | 29 | ||
24 | tox: base64 read/show | ||
25 | |||
26 | tox: cache diffie-helman secrets | 30 | tox: cache diffie-helman secrets |
27 | 31 | ||
28 | tox: Expire old Tox keys. | 32 | tox: Expire ofline Tox announces. |
29 | 33 | ||
30 | tox: Chat support. | 34 | tox: Chat support. |
31 | 35 | ||
@@ -37,56 +41,15 @@ bt: Limit peers in get_peers response for UDP packet size limiting (around 1k). | |||
37 | 41 | ||
38 | bt: Use LMDB backend for peer store (and nodes too?). | 42 | bt: Use LMDB backend for peer store (and nodes too?). |
39 | 43 | ||
40 | Notes: | 44 | maint: Rename files. |
41 | |||
42 | |||
43 | |||
44 | new commands: | ||
45 | |||
46 | p - put/publish a single given datum on a single given node. | ||
47 | |||
48 | When destination address (node-addr) is optional, it's absense means to | ||
49 | publish information in the local node's own database. | ||
50 | |||
51 | Bittorrent: (peer) publish yourself as peer in swarm. | ||
52 | arguments: {"id" : "<querying nodes id>", | ||
53 | "implied_port": <0 or 1>, | ||
54 | "info_hash" : "<20-byte infohash of target torrent>", | ||
55 | "port" : <port number>, | ||
56 | "token" : "<opaque token>"} | ||
57 | response: {"id" : "<queried nodes id>"} | ||
58 | |||
59 | p peer <infohash> <token> [node-addr] | ||
60 | |||
61 | Tox: (toxid) publish a rendezvous onion route to dht node. | ||
62 | (friend) publish friend-request to rendezvous point. | ||
63 | (dhtkey) publish dht-nodeid to rendezvous point. | ||
64 | |||
65 | p toxid <key-pair> <token> [node-addr] | ||
66 | |||
67 | p friend <key-pair> <nospam> <rendezvous-addr> <text> | ||
68 | |||
69 | p dhtkey <key-pair> - <rendezvous-addr> | ||
70 | |||
71 | a - announce, like put/publish but automatically selects nodes to publish on | ||
72 | and continually refreshes the records. | ||
73 | |||
74 | The method name is preceded with a + to start or a - to stop a given | ||
75 | recuring publication. | ||
76 | |||
77 | a - with no arguments would list the currently active recuring publications. | ||
78 | |||
79 | a +peer <infohash> | ||
80 | a -peer <infohash> | ||
81 | |||
82 | a +toxid <key-pair> | ||
83 | a +friend <nospam> <text> | ||
84 | a +dhtkey | ||
85 | 45 | ||
86 | k - manage key-pairs | 46 | OnionRouter -> Network.Tox.Onion.Routes |
47 | Announcer -> Network.Kademlia.Announce | ||
48 | InterruptibleDelay -> Control.Concurrent.Delay | ||
49 | Roster -> Network.Tox.ContactInfo | ||
50 | Crypto.Tox -> Network.Tox.Crypto | ||
51 | Network.Tox.Crypto.Handlers -> Network.Tox.Friend.Handlers | ||
52 | Network.Tox.Crypto.Transport -> Network.Tox.Friend.Transport | ||
87 | 53 | ||
88 | k (list keys) | 54 | maint: Probably, Network.* should be reserved for very general tools and the Tox and |
89 | k gen (generate new key and list keys) | 55 | BitTorrent paths should be moved to the top level. |
90 | k add <secret-key> (input a specific secret key) | ||
91 | k del <secret-key> | ||
92 | k secrets (list key pairs, including secret keys) | ||