aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* GANA: Update submoduleMartin Schanzenbach2022-10-01
|
* - fixMartin Schanzenbach2022-10-01
|
* - fixMartin Schanzenbach2022-10-01
|
* - update submoduleMartin Schanzenbach2022-10-01
|
* - update submoduleMartin Schanzenbach2022-10-01
|
* - update submoduleMartin Schanzenbach2022-10-01
|
* DOC: Manpage cleanupMartin Schanzenbach2022-10-01
| | | | Divide the gnunet handbook manpage into more parts.
* - update submoduleMartin Schanzenbach2022-10-01
|
* - remove dead branch ecdsa; check return valueMartin Schanzenbach2022-10-01
|
* - remove dead branchMartin Schanzenbach2022-10-01
|
* - various return value assertionsMartin Schanzenbach2022-10-01
|
* - coverity fixesMartin Schanzenbach2022-10-01
|
* Merge branch 'master' of git+ssh://git.gnunet.org/gnunetMartin Schanzenbach2022-10-01
|\
| * [history] Mark old logos in `contrib/branding/logo/` as `old-` and add svgmadmurphy2022-09-30
| |
* | -fileMartin Schanzenbach2022-10-01
| |
* | NAMESTORE: Add manpage for new database CLIMartin Schanzenbach2022-10-01
| |
* | -fixMartin Schanzenbach2022-09-30
| |
* | NAMESTORE: Add postgres functions for DB setup utilityMartin Schanzenbach2022-09-30
| |
* | NAMESTORE: Add DB setup utility with SQlite support; PQ brokenMartin Schanzenbach2022-09-30
|/
* UTIL: gnunet-config can now print experimental status. Issue #5708Martin Schanzenbach2022-09-29
|
* BUILD: Fix mysql detection issue #7356Martin Schanzenbach2022-09-29
|
* NAMESTORE: Allow service-side record set filtering. Fixes #7193Martin Schanzenbach2022-09-28
| | | | | | | This commit enables zone iteration APIs which allow you to set a record set filter to determine which records should be returned or not. In particular filtering of private records and maintenance records (TOMBSTONE) for zonemaster.
* -fixMartin Schanzenbach2022-09-27
|
* BUILD: Improve documentation buildMartin Schanzenbach2022-09-27
|
* Merge branch 'master' of git+ssh://git.gnunet.org/gnunetMartin Schanzenbach2022-09-27
|\
| * Arch packages don't depend anymore on gnURLmadmurphy2022-09-26
| |
| * -add yearChristian Grothoff2022-09-26
| |
* | BUILD: Do not build whole documentation if manpages are also enabledMartin Schanzenbach2022-09-27
|/
* BUILD: Silence some -Wall warningsMartin Schanzenbach2022-09-26
|
* NAMESTORE: Fix API return valueMartin Schanzenbach2022-09-26
|
* updating Debian packageChristian Grothoff2022-09-26
|
* -changelog housekeeping; various build cleanupsv0.17.6Martin Schanzenbach2022-09-26
|
* BUILD: Wow, automake is sh*tMartin Schanzenbach2022-09-26
|
* -bump handbookMartin Schanzenbach2022-09-26
|
* -fix openbsd buildMartin Schanzenbach2022-09-25
|
* GANA: Bump versionMartin Schanzenbach2022-09-25
|
* -fixMartin Schanzenbach2022-09-25
|
* DOC: Conditionally build doxygen; build sphinx on bootstrapMartin Schanzenbach2022-09-25
|
* -fix distingChristian Grothoff2022-09-25
|
* -do not make installation of man pages conditional on sphinx being available ↵Christian Grothoff2022-09-25
| | | | at compile-time
* [gnunet-search] Fix `-s` and `-o` options not working togethermadmurphy2022-09-25
|
* -fix installation of gnunet.infoChristian Grothoff2022-09-24
|
* NAMESTORE: Fix error handling for lookupsMartin Schanzenbach2022-09-24
| | | | | The error was wrongly interpreted as GNUNET_NO is not an error in this particular case.
* NAMESTORE: Towards proper transactional locksMartin Schanzenbach2022-09-23
|
* NAMESTORE: Add select ... for update / edit records APIsMartin Schanzenbach2022-09-23
|
* Merge branch 'dev/schanzen/namestore_transactions'Martin Schanzenbach2022-09-23
|\
| * NAMESTORE: Add tx API for postgresMartin Schanzenbach2022-09-23
| |
| * NAMESTORE: Remove head based databaseMartin Schanzenbach2022-09-23
| | | | | | | | | | | | The "flat" file (heap based) storage is not compatible with a transactional API. A new file-based storage has to be written if required in the future.
| * NAMESTORE: Add begin, commit and rollback API messagesMartin Schanzenbach2022-09-23
| | | | | | | | | | Namestore service can now handle begin commit and rollback. A test for rollback exists and works for sqlite.
| * NAMESTORE: Use a per client database connectionMartin Schanzenbach2022-09-23
| | | | | | | | | | | | Each connecting namestore client will now get a new database connection through any of the plugins. This will allow us to properly use locking in databases where available.