aboutsummaryrefslogtreecommitdiff
path: root/src/util
Commit message (Collapse)AuthorAge
* -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
|
* just use catChristian Grothoff2021-01-06
|
* do not output synthetic pathsChristian Grothoff2021-01-02
|
* fix /proc/PID/maps parser format stringChristian Grothoff2021-01-02
|
* do not use atomic write for configuration file, we may not have permissions ↵Christian Grothoff2020-12-31
| | | | to do this, also should not be necessary
* fix sendto bugChristian Grothoff2020-12-20
|
* change GNUNET_DISK_fn_write() to always do atomic writes and to NOT ↵Christian Grothoff2020-12-19
| | | | overwrite existing files; also change the return value to not return the size of the written file but GNUNET_OK on success, and integrate creating the directory if needed; breaks API, hence bumping libgnunetutil version
* add GNUNET_CRYPTO_hash_context_copy() functionChristian Grothoff2020-12-09
|
* Merge branch 'master' of git+ssh://gnunet.org/gnunetChristian Grothoff2020-12-05
|\
| * -remove unused macro / add commentFlorian Dold2020-12-04
| |
| * gnunet-crypto-tvg: fix bogus labelFlorian Dold2020-12-04
| |
| * add test vector unit testFlorian Dold2020-12-04
| |
| * gnunet-crypto-tvg: add verification modeFlorian Dold2020-12-04
| |
| * gnunet-crypto-tvg: output JSON, fix memleaksFlorian Dold2020-12-04
| | | | | | | | | | This commit also bumps the version of libgnunetutil, due to the spell checking fix to xts in rsa (un)blinding.
* | -fix indentationChristian Grothoff2020-12-05
| |
* | fix typeChristian Grothoff2020-11-22
|/
* spell checkingChristian Grothoff2020-11-14
|
* -fix some warningsMartin Schanzenbach2020-10-26
|
* - fix '-c' in applications without base configAlessio Vanni2020-10-26
|
* -fix some warningsMartin Schanzenbach2020-10-16
|
* enable more format string warningsChristian Grothoff2020-10-13
|
* Allow applications to change ProjectData with only some fieldsAlessio Vanni2020-10-11
| | | | | | | | | | | Some simple applications (e.g. thin clients) might want to change the ProjectData structure (e.g. for gettext), but might not meet all the requirements needed to fill it out completely. A thin client might not provide any library, making the `libname' field useless. More importantly, not every application requires a configuration: some of them, especially clients, might simply use command line options to drive their behaviour.
* UTIL: Never localize fancy strings in to_string to prevent breaking ↵Martin Schanzenbach2020-10-02
| | | | from_string parser
* Merge branch 'master' of ssh://gnunet.org/gnunett3sserakt2020-09-08
|\
| * gnunet-qr/uri: Fix exit code handling; fix memory corruptionMartin Schanzenbach2020-09-02
| |
* | - fixed socket clean up; added sync between start of service and communicatort3sserakt2020-09-08
|/