aboutsummaryrefslogtreecommitdiff
path: root/src/core/gnunet-service-core.c
Commit message (Collapse)AuthorAge
* paragraph for gnunet devs that don't know how to use the webpsyc://loupsycedyglgamf.onion/~lynX2018-06-07
|
* glitch in the license text detected by hyazinthe, thank you!psyc://loupsycedyglgamf.onion/~lynX2018-06-07
|
* first batch of license fixes (boring)psyc://loupsycedyglgamf.onion/~lynX2018-06-05
|
* allow MST callback to distinguish between disconnect and parse error ↵Christian Grothoff2017-10-29
| | | | situations, and only log for the hard errors
* more renamings relating to 'new' service now just being the 'normal' serviceChristian Grothoff2017-03-17
|
* improve traffic drop heuristicChristian Grothoff2017-02-24
|
* lower log levelChristian Grothoff2017-02-24
|
* limit queue size CORE maintains for any client, warn if we exceed itChristian Grothoff2017-02-23
|
* mostly logging, avoid having more than one typemap in transmission queue, ↵Christian Grothoff2017-02-19
| | | | accept port=0 as not an error, tolerate link-local addrs
* -cleaning up implementation of typemap signallingChristian Grothoff2016-09-28
|
* fix client init handlingChristian Grothoff2016-09-26
|
* set flag to know that client did call init, thereby avoiding assertion ↵Christian Grothoff2016-09-26
| | | | failure on code that expected initialized client
* init connect map on connectChristian Grothoff2016-09-26
|
* converting core service to new service APIChristian Grothoff2016-09-20
|
* -converting CORE service to new transport MQ APIChristian Grothoff2016-07-26
|
* implementing new scheduler shutdown semanticsChristian Grothoff2016-04-30
|
* small API change: do no longer pass rarely needed ↵Christian Grothoff2016-04-09
| | | | GNUNET_SCHEDULER_TaskContext to all scheduler tasks; instead, allow the relatively few tasks that need it to obtain the context via GNUNET_SCHEDULER_get_task_context()
* -fix (C) noticesChristian Grothoff2016-01-19
|
* fix #3869: outdated FSF addressChristian Grothoff2015-06-30
|
* -bringing copyright tags up to FSF standardChristian Grothoff2015-02-07
|
* towards fixing #3363: replacing old iteration API with new monitoring API ↵Christian Grothoff2014-04-11
| | | | for core (needs testing, gnunet-core incomplete)
* separating ECC crypto into functions/structs for ECDHE, ECDSA and EDDSAChristian Grothoff2013-10-10
|
* -remove trailing whitespaceChristian Grothoff2013-10-06
|
* -simplify zone key loading by using synchronous ECC key APIChristian Grothoff2013-07-09
|
* -trying to address #2791Christian Grothoff2013-02-11
|
* switching to ECDHE cryptography f, implementation is incomplete and ↵Christian Grothoff2013-02-05
| | | | INSECURE, do not use for anything but testing
* -cleanupChristian Grothoff2013-01-31
|
* fixing #1551/#2503Christian Grothoff2012-09-17
|
* -extra debugging codeChristian Grothoff2012-05-04
|
* curly wars / auto-indentationChristian Grothoff2011-11-04
|
* no longer neededChristian Grothoff2011-10-18
|
* try fix shutdown orderChristian Grothoff2011-10-18
|
* rename new coreChristian Grothoff2011-10-17
|
* remove old coreChristian Grothoff2011-10-17
|
* move GNUNET_TRANSPORT_ATS_ to GNUNET_ATS_Christian Grothoff2011-10-17
|
* dead code eliminationChristian Grothoff2011-10-10
|
* fix: update available recv window bw if bw_in changesChristian Grothoff2011-10-10
|
* removing 'publicKey' argument from CORE init callbackChristian Grothoff2011-10-07
|
* eliminate REQUEST_CONNECT handlersChristian Grothoff2011-10-05
|
* adding assertions to help with 1815Christian Grothoff2011-10-04
|
* LRN: Use GNUNET_EXTRA_LOGGING to manage compile-time logging callsChristian Grothoff2011-10-04
| | | | | | (#1805).
* unnecessaryChristian 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
* fix #1713 (see discussion there)Christian Grothoff2011-10-02
|
* report disconnect reasons in statsChristian Grothoff2011-09-29
|
* run indent twice, it alternates between two 'canonical' forms, also run ↵Christian Grothoff2011-08-29
| | | | whitespace remover
* even nicer indentation, thanks to LRN's indent patchChristian Grothoff2011-08-16
|
* indentationChristian Grothoff2011-08-15
|
* indentationChristian Grothoff2011-08-15
|
* fixChristian Grothoff2011-08-04
|