aboutsummaryrefslogtreecommitdiff
path: root/src/dht
Commit message (Collapse)AuthorAge
* -fmtChristian Grothoff2014-05-27
|
* enable DHT monitors to distinguish routing requests from requests that ↵Christian Grothoff2014-05-27
| | | | terminate at the local node (for GET/PUT, not for replies)
* RefactoringSupriti Singh2014-05-21
|
* - Adding code to check for congestion and threshold in find_successor()Supriti Singh2014-05-20
| | | | | - Updating trail rejection to get congestion time from congested peer.
* - Adding a new message type,GNUNET_MESSAGE_TYPE_DHT_P2P_ADD_TRAILSupriti Singh2014-05-19
| | | | | | - removing compare_and_update_predecessor() - refactoring trail rejection.
* Bug fixSupriti Singh2014-05-16
|
* - Fixes in routing table functionsSupriti Singh2014-05-14
|
* Handling the correct return type from find_successor() in get,put,get_result ↵Supriti Singh2014-05-13
| | | | functions.
* - Adding a new field in struct PeerTrailTearDownMessage, new_first_friend.Supriti Singh2014-05-13
|
* - Changing send_verify_successor_message to a function call from a periodic ↵Supriti Singh2014-05-13
| | | | | | | | task - Fixing the return value in case I am destination in find_successor() - Refactoring of finger_table_add()
* refactoring the code for finger_table_add(), compare_and_update_predecessor()Supriti Singh2014-05-12
|
* -note to supritiChristian Grothoff2014-05-11
|
* Minor bigfixes.Andrew Cann2014-05-11
|
* Handling all the cases while adding a new entry in finger table.Supriti Singh2014-05-05
| | | | | | Modifying struct FingerInfo to store two trails to reach to same finger. Adding code to handle threshold on number of trails through a friend.
* Handling trail rejection message, not using a failed trial list. Supriti Singh2014-04-28
|
* Removing compile warningsSupriti Singh2014-04-23
| | | | | Adding a new message type, tear down.
* Removing routing table entries corresponding to disconnected peer Supriti Singh2014-04-16
|
* Adding correct include file "gnunet_dht_service.h" in neighbours.hSupriti Singh2014-04-16
|
* Removing current_trail_index, current_destination_type where not required.Supriti Singh2014-04-15
| | | | | Cleaning up handle_get, handle_put, handle_trail code.
* -comments for surpitiChristian Grothoff2014-04-14
|
* changes in get and put code.Supriti Singh2014-04-13
|
* Framework for trail rejection and threshold on linksSupriti Singh2014-04-13
| | | | | first phase changes for get.
* -doxygenChristian Grothoff2014-04-08
|
* 1.Removed GNUNET_CRYPTO_compute_finger_identitySupriti Singh2014-04-07
| | | | | | | 2.Removed myself as the first element of the trail. 3.Multiple entries in the routing table. 4.Put/Get/Monitor from old DHT added back in clients file.
* -doxygenChristian Grothoff2014-04-07
|
* Framework for put/get/monitorSupriti Singh2014-03-28
|
* Merged update_successor and update_predecessor with finger table addSupriti Singh2014-03-24
|
* Updated find successor Supriti Singh2014-03-20
|
* Added a dll to store finger trail in struct FingerInfoSupriti Singh2014-03-17
|
* - verify successor resultSupriti Singh2014-03-11
| | | | | - notify new successor
* - verify_successorSupriti Singh2014-03-06
| | | | | | - 64 bit finger identifier - predecessor flag
* - Modified find_successorSupriti Singh2014-03-06
| | | | | - added a new field successor flag to identify successor in finger table.
* - Adding self to trail_peer_listSupriti Singh2014-03-05
| | | | | | | - Adding functions to handle concurrent node joins. - Modified but incomplete find_successor logic. - Added new message types for concurrent node joins.
* Fixed memory allocation for peer list. Supriti Singh2014-02-25
|
* 1. Refactored the code for trail setup and trail setup result.Supriti Singh2014-02-24
| | | | | 2. Adding an entry into finger table.
* 1.Modified struct PeerTrailSetupMessage and PeerTrailSetupResultMessage.Supriti Singh2014-02-17
| | | | | 2.Handling trail setup result message.
* Computing finger identity using libgcrypt functions.Supriti Singh2014-02-07
|
* - change log info of LOG_TRAFFIC, use R5N to distinguish from XDHTBart Polot2014-02-05
|
* - wipe all previous data in *key so there is no potentially uninilialized memoryBart Polot2014-02-05
|
* - log FULL keys on mismatchBart Polot2014-02-05
|
* Finding successor of a peer id.Supriti Singh2014-02-04
|
* - TODOBart Polot2014-02-04
|
* 1. Adding an entry in routing table.Supriti Singh2014-02-03
| | | | | 2. Peer arithmetic to get finger id.
* Fix TESTS_ENVIRONMENT setting (allow GNUNET_PREFIX to be overriden, allow ↵LRN2014-02-02
| | | | TESTS_ENVIRONMENT to be overrided (use AM_TESTS_ENVIRONMENT))
* Handling trail setup result message.Supriti Singh2014-01-31
|
* -doxygenChristian Grothoff2014-01-30
|
* towards reviving priorities in core API, this time with enum to make classes ↵Christian Grothoff2014-01-30
| | | | clearer
* fix #3284: support lib/MULTIARCH/ paths in installation, use ↵Christian Grothoff2014-01-30
| | | | GNUNET_PREFIX=@libdir@ so that we can extract the value of MULTIARCH during 'make check'
* Implemented logic to randomly choose a friend.Supriti Singh2014-01-28
| | | | | | Modified struct TrailPeerList
* -Modified struct PeerTrailSetupMessage.Supriti Singh2014-01-27
| | | | | | | | -Modified struct PeerTrailSetupResultMessage. -Added stubs for find_predecessor. -Added comments to understand the flow.