aboutsummaryrefslogtreecommitdiff
path: root/src/util
Commit message (Collapse)AuthorAge
...
* | 5708: allow gnunet-config to output build config informationsAlessio Vanni2021-07-24
|/ | | | | | | | | | | | | | | | With this commit, `gnunet-config' is now able to print some informations about how GNUnet was built through some additional flags (here `--cflags', `--libs' and `--prefix'.) These flags allow `gnunet-config' to behave like other `*-config' tools provided by other applications/libraries, which are used by third-party applications, especially when the tool is provided by a library, to properly compile using the flags recommended by the library/application. In terms of GNUnet, any client or service connecting to any GNUnet service can now be built using some variation of the following: cc $(gnunet-config --cflags) -o my-client client.c $(gnunet-config --libs)
* early draft for libgnunetpq event notification supportChristian Grothoff2021-07-24
|
* -yodaChristian Grothoff2021-07-23
|
* -even more time functionsChristian Grothoff2021-07-23
|
* introduce new TIME helper functionsChristian Grothoff2021-07-23
|
* introduce new TIME helper functionsChristian Grothoff2021-07-23
|
* -handle corner cases in JSON parser, lift 1kb restrictionChristian Grothoff2021-07-18
|
* fix #6925 and #6926Christian Grothoff2021-07-17
|
* - started to implement several cmds to start peers^Ctestcase plugin will be ↵t3sserakt2021-07-16
| | | | started directly from helper, functionality to communicate between master cmd loop and local cmd loop, code compiles, test is not working atm.
* UTIL: Prevent segfaults in config writeout. Fixes #6913Martin Schanzenbach2021-07-05
|
* - stopping testbed, starting testbed for every node, fixing bugs, implement ↵t3sserakt2021-07-02
| | | | traits to start peers on nodes
* - starting testbed with netjailt3sserakt2021-06-30
|
* -style fixesChristian Grothoff2021-06-24
|
* -add NULL checkChristian Grothoff2021-05-15
|
* - include h in expanded key as defined in lsd0001Martin Schanzenbach2021-05-10
|
* UTIL: Fix #6858Martin Schanzenbach2021-05-10
|
* -add more tests for eddsa and gnsrecordMartin Schanzenbach2021-05-03
|
* Merge branch 'master' of ssh://gnunet.org/gnunetMartin Schanzenbach2021-05-03
|\
| * migrate test as well, integrate child_management with libgnunetutilChristian Grothoff2021-05-03
| |
* | -fixMartin Schanzenbach2021-05-03
|/
* -remove (hopefully) unnecessary clampingMartin Schanzenbach2021-05-03
|
* -more comments, refactor derive_hMartin Schanzenbach2021-05-03
|
* -more comments on EDKEY signatureMartin Schanzenbach2021-05-03
|
* GNS: Add EDKEY support.Martin Schanzenbach2021-05-02
| | | | | | GNS and GNSRECORD can now handle EdDSA keys in addition to the existing ECDSA scheme. See also LSD0001.
* - fix misc typosChristian Grothoff2021-04-28
|
* -fix many more typosChristian Grothoff2021-04-26
|
* -fix typosChristian Grothoff2021-04-26
|
* -handle NULLChristian Grothoff2021-04-26
|
* fix gnunet-config: do not always write configuration fileChristian Grothoff2021-04-26
|
* - unconditionally build dlogMartin Schanzenbach2021-04-26
|
* Merge branch 'master' of ssh://gnunet.org/gnunett3sserakt2021-04-25
|\
| * -Fix several incorrect uses of `i.e.'Alessio Vanni2021-04-24
| | | | | | | | With some other changes to sentences here and there as I found appropriate.
| * Swap gnunet-config's default behaviour for the rewrite flagAlessio Vanni2021-04-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the previous default, a configuration file could keep values different from the defaults even when the user did not explicitly edit that option, potentially leading to buggy behaviour. For example: GNUnet's version X+1 changes the default value for a certain option A, but anyone who has edited the configuration file with version X or earlier, would still have got the old default for A even when updating to version X+1. It was possible to write only the edited parts, but that required explicitly passing the `--rewrite' (or `-w') flag. The default behaviour has now been swapped so that the resulting file contains only differences, while a "frozen" configuration is generated with the `--rewrite' flag. Also, as it's a minor change: a function used internally by the logging component was using translated strings to check the requested log level. This behaviour is buggy as passing an untranslated string to e.g. `GNUNET_log_setup', while the current locale is different and a translation for that string exists, would generate a different log level than the one requested.
* | - added testing cmd child managementt3sserakt2021-04-25
|/
* SCALARPRODUCT: migrating logic from libgcrypt to libsodium (#6818).Christian Grothoff2021-04-18
|
* -keep using breakChristian Grothoff2021-04-11
|
* -remove duplicated commentsChristian Grothoff2021-04-11
|
* Implement function to load plugins within a specific contextAlessio Vanni2021-04-05
| | | | | | | | | | | | | | | When `GNUNET_OS_init' is called to change the application project data, lazy-loading plugins will fail as it will not find the requested files. The function will temporarily swap the project data with the argument value and will search for plugins, within the installation directory tree inferred from that structure. Applications can still use `GNUNET_PLUGIN_load_all' to load their plugins from within their own installation directory tree, though services are recommended to use the `in_context' version to avoid falling in the same pit. Signed-off-by: Martin Schanzenbach <mschanzenbach@posteo.de>
* Changed perfomance setu fileElias Summermatter2021-03-31
|
* UTIL/SCALARPRODUCT: Do not build ECC dlog or scalarproduct with incompatible ↵Martin Schanzenbach2021-03-30
| | | | libgcrypt versions (>=1.9.0)
* -more coverity fixesMartin Schanzenbach2021-03-26
|
* -fixing memleaks and nptr derefsMartin Schanzenbach2021-03-26
|
* -implementation notice for our ECCMartin Schanzenbach2021-03-10
|
* IDENTITY: Fix wrong key construction for anonymous ECDSA identityMartin Schanzenbach2021-03-09
|
* add base32 encoder/decoderChristian Grothoff2021-03-02
|
* -flurry of bugfixes for tng serviceMartin Schanzenbach2021-02-23
|
* implement #6716Christian Grothoff2021-01-28
|
* fix config testChristian Grothoff2021-01-16
|
* convert to GMT, not localtime in GNUNET_TIME_year_to_timeChristian Grothoff2021-01-07
|
* properly document return value of GNUNET_PROGRAM_runChristian Grothoff2021-01-07
|