aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-dht_neighbours.c
Commit message (Collapse)AuthorAge
...
* - fix in monitoring, documentation, styleBart Polot2013-03-01
|
* configurable hello expirationGabor X Toth2012-11-18
|
* - save xquery for neighborsBart Polot2012-11-14
|
* -back to sane loggingChristian Grothoff2012-11-14
|
* fixing crash of mesh service -- reproduced by regex profiler w 100 peers -- ↵Christian Grothoff2012-11-14
| | | | on shutdown due to failure to initialize dht_handle field
* -extra logging, minor code cleanupChristian Grothoff2012-11-14
|
* changes to transport apiMatthias Wachs2012-11-09
|
* -chaning multihashmap API to allow option for avoiding key allocationChristian Grothoff2012-10-07
|
* adding DHT option to disable calls to try connectChristian Grothoff2012-09-02
|
* -fixing #2420Christian Grothoff2012-06-12
|
* -consistently use struct GNUNET_HashCodeChristian Grothoff2012-06-12
|
* -simplifying core API (#2400)Christian Grothoff2012-06-09
|
* -more uniform statistics namingChristian Grothoff2012-05-27
|
* -fixChristian Grothoff2012-04-23
|
* -improve debug statementChristian Grothoff2012-04-22
|
* -eliminating legacy DEBUG ifdefsChristian Grothoff2012-04-22
|
* - Rewritten DHT monitoringBart Polot2012-04-20
|
* - Add local DHT request to the monitoring resultsBart Polot2012-04-19
|
* - Use correct message typesBart Polot2012-01-05
|
* New DHT-monitor functionalityBart Polot2012-01-04
|
* fixing 2012: network structure alignment now forced to be correct even on ↵Christian Grothoff2011-12-21
| | | | W32 using #pragma pack from gcc 4.x
* curly wars / auto-indentationChristian Grothoff2011-11-04
|
* ob1Christian Grothoff2011-10-25
|
* fix loop boundsChristian Grothoff2011-10-25
|
* put ifdefs around DEBUG logsChristian Grothoff2011-10-25
|
* replacing 0-terminated atsi-array with array+length in core API (and the ↵Christian Grothoff2011-10-22
| | | | core-connect IPC)
* move GNUNET_TRANSPORT_ATS_ to GNUNET_ATS_Christian Grothoff2011-10-17
|
* adapting code to new ATS APIsChristian Grothoff2011-10-13
|
* new ATS API -- code won't compileChristian Grothoff2011-10-13
|
* leakChristian Grothoff2011-10-12
|
* leakChristian Grothoff2011-10-12
|
* another core API simplification due to ATS introductionChristian Grothoff2011-10-10
|
* renaming in code to use new ATS pref/reservation APIChristian Grothoff2011-10-10
|
* first round of simplification to change preference APIChristian Grothoff2011-10-07
|
* removing 'publicKey' argument from CORE init callbackChristian Grothoff2011-10-07
|
* tell transport to connect, not coreChristian Grothoff2011-10-05
|
* add statisticChristian Grothoff2011-10-04
|
* add a few assertionsChristian Grothoff2011-10-04
|
* fixing memory leak (#1809)Christian Grothoff2011-10-04
|
* LRN's big logging rewrite (#1805):Christian Grothoff2011-10-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * GNUNET_BOTTOM_LOGLEVEL and GNUNET_TOP_LOGLEVEL set global levels Use bottom level to force logging to be more verbose than configured Use top level to force logging to be less verbose than configured Obviously, bottom <= top * GNUNET_LOG sets per-component levels GNUNET_LOG looks like this: name[/bottom[/top]]/... name starts with a non-digit character, must not include '/' bottom and top must consist only of digits, or be empty a description is only used if it matches the component exactly as a special exception (for now) the name '*' matches any component per-component loglevels override global loglevels global levels override whatever is given via arguments or in config Examples: test_client/8/8/ run test_client with DEBUG level (usually leads to a timeout, by the way) */2/2/core/8/8/transport/4/4 run everything with WARNING, core - with DEBUG, transport - with INFO *//1/peerinfo/4/ run everything with top loglevel ERROR, global/configured bottom loglevel, and peerinfo - with bottom loglevel INFO and global/configured top loglevel statistics/ does nothing * Added GNUNET_ERROR_TYPE_UNSPECIFIED enum value, to hold -1. Its corresponding string is NULL. * Changed the logger calls as Grothoff suggested - to use static int to hold the result of runtime evaluation of logability. Logging can be unconditionally disabled in advance by defining GNUNET_LOG_CALL_STATUS to 0, and enabled in advance by defining it to 1. * Added GNUNET_CULL_LOGGING, which, if defined, completely culls out all logging calls at compile time. * Log definition parsing is only done once, results are cached. * Changed definition format, now it looks like this: [component|*|];[file|*|];[function|*|];[from_line[-to_line]];level/[component...] All field separators are mandatory (but some fields could be empty or be '*'). Line definition must be either empty or "number" or "number-number" Level definition must not be empty, and is a string representation of the level (i.e. DEBUG, WARNING, INFO, etc). Definition entry must end with a slash, whether or not there's another entry after it. File name is matched to the end of __FILE__, which allows file name to match not only the base name, but also directories leading to it. * Removed default WARNING loglevel from program and service utility code. Now they default to NULL (UNSPECIFIED) level, which can be overriden by GNUNET_LOG definition, if no level is specified via config or commandline. Log levels from config or commandline are overriden by GNUNET_FORCE_LOG. If GNUNET_*LOG are undefined, and no levels came from config or commandline, logger internally defaults to WARNING level. Add --enable-logging configure option
* fixing bloomfilter code, fixing testcaseChristian Grothoff2011-09-30
|
* added assertion to find https://www.gnunet.org/bugs/view.php?id=1808Matthias Wachs2011-09-30
|
* fixChristian Grothoff2011-09-30
|
* re-add logging, move BF add operations to the latest possible time to avoid ↵Christian Grothoff2011-09-30
| | | | polluting tests needlessly
* removing excessive logging, adding missing decrement (choice) to avoid ↵Christian Grothoff2011-09-29
| | | | assertion failure; fixing loop bounds in non-random peer selection
* do not add 1 twice -- callee also added 1, resulting in an increment by 2 ↵Christian Grothoff2011-09-29
| | | | per hop
* log more details for debuggingChristian Grothoff2011-09-29
|
* cleaning up testcase, debuggingChristian Grothoff2011-09-29
|
* nicerChristian Grothoff2011-09-29
|
* fixing 1804Christian Grothoff2011-09-29
|