aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* -more comments, refactor derive_hMartin Schanzenbach2021-05-03
|
* -more comments on EDKEY signatureMartin Schanzenbach2021-05-03
|
* -corrected sub-process cleanup for netjailTheJackiMonster2021-05-02
| | | | Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
* -added optional stunserver to netjail scriptTheJackiMonster2021-05-02
| | | | Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
* -more work for JE MarchesiChristian Grothoff2021-05-02
|
* -add edkey test vectorMartin Schanzenbach2021-05-02
|
* -fix buildMartin Schanzenbach2021-05-02
|
* 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 compiler warningsChristian Grothoff2021-04-29
|
* -more git handbookMartin Schanzenbach2021-04-28
|
* -fix documentation linksMartin Schanzenbach2021-04-28
|
* - fix misc typosChristian Grothoff2021-04-28
|
* -fix FTBFSChristian Grothoff2021-04-26
|
* -fix many more typosChristian Grothoff2021-04-26
|
* -fix many more typosChristian Grothoff2021-04-26
|
* -fix typosChristian Grothoff2021-04-26
|
* -fix misc typosChristian Grothoff2021-04-26
|
* -handle NULLChristian Grothoff2021-04-26
|
* fix gnunet-config: do not always write configuration fileChristian Grothoff2021-04-26
|
* -update readme for pabcMartin Schanzenbach2021-04-26
|
* -do not require autotools >=2.71Martin Schanzenbach2021-04-26
|
* -towards #6851: autotools 2.70Martin Schanzenbach2021-04-26
|
* - unconditionally build dlogMartin Schanzenbach2021-04-26
|
* -fix build reclaimMartin 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.
| * RECLAIM: Added libpabc credential support.dev/schanzen/pabcMartin Schanzenbach2021-04-24
| |
| * -fix typosChristian Grothoff2021-04-24
| |
| * -fix typosChristian Grothoff2021-04-23
| |
* | - added testing cmd child managementt3sserakt2021-04-25
|/
* - added check for libsodium 1.0.18t3sserakt2021-04-20
|
* -first netjail setup with NATs integratedTheJackiMonster2021-04-19
| | | | Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
* -unconditionally compile scalarproduct againChristian Grothoff2021-04-18
|
* SCALARPRODUCT: migrating logic from libgcrypt to libsodium (#6818).Christian Grothoff2021-04-18
|
* - fixed format for configure.ac git versionrexxnor2021-04-18
|
* - fixed format for configure.ac git versionrexxnor2021-04-18
|
* - fixed configure.ac to show last commit of current branchrexxnor2021-04-18
|
* -bump debian package versionChristian Grothoff2021-04-18
|
* -fix linker flagsChristian Grothoff2021-04-18
|
* -remove duplicate commentsChristian Grothoff2021-04-16
|
* - removed unfinshed file from Makefilet3sserakt2021-04-15
|
* - added handling of asynchronous task to testing ng. added testbed commands ↵t3sserakt2021-04-15
| | | | for setting up test invironment (atm wihtout the use of the ne async handling)
* -keep using breakChristian Grothoff2021-04-11
|
* -remove duplicated commentsChristian Grothoff2021-04-11
|
* -mergeChristian Grothoff2021-04-07
|\
| * -add missing helperChristian Grothoff2021-04-07
| |
* | -add missing helperChristian Grothoff2021-04-07
|/
* -DESIGN: add various suggestions to gnunet_testing_ng_lib.hChristian Grothoff2021-04-06
|
* 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>