aboutsummaryrefslogtreecommitdiff
path: root/src/datacache
Commit message (Collapse)AuthorAge
* BUILD: Move dht/datastore to service/cliMartin Schanzenbach2023-10-18
|
* BUILD: more more components into new structure; ftbfs fixMartin Schanzenbach2023-10-18
|
* BUILD: Move testing to libMartin Schanzenbach2023-10-18
|
* BUILD: Move pq/sq to libMartin Schanzenbach2023-10-18
|
* NEWS: Refactoring components under src/ into lib/, plugin/, cli/ and service/Martin Schanzenbach2023-10-18
| | | | | This also includes a necessary API refactoring of crypto from IDENTITY to UTIL.
* datacache: remove broken benchmark testsMartin Schanzenbach2023-10-16
|
* meson: add datacache tests; improve test return valuesMartin Schanzenbach2023-10-16
|
* BUILD: Meson libgnunet monolith fix; set still prevents buildMartin Schanzenbach2023-10-05
|
* BUILD: Meson, more missing pluginsMartin Schanzenbach2023-09-29
|
* BUILD: Meson install even more filesMartin Schanzenbach2023-09-27
|
* BUILD: meson use correct soversion and versionMartin Schanzenbach2023-09-24
|
* BUILD: Meson - install more filesMartin Schanzenbach2023-09-23
|
* BUILD: Only build pq plugins if dependency foundMartin Schanzenbach2023-09-23
|
* BUILD: Build pq plugins with mesonMartin Schanzenbach2023-09-23
|
* BUILD: Towards mode complete buildMartin Schanzenbach2023-09-22
|
* BUILD: meson configuration filesMartin Schanzenbach2023-09-21
|
* BUILD: Towards libgnunet buildMartin Schanzenbach2023-09-21
|
* BUILD: Start experimental meson buildMartin Schanzenbach2023-09-20
|
* NEWS: GNUNET_TESTING_get_testname_from_underscore renamed to ↵Christian Grothoff2023-09-09
| | | | GNUNET_STRINGS_get_suffix_from_binary_name and moved from libgnunettesting to libgnuneutil
* -DATACACHE: fix memory leaks in tests.ulfvonbelow2023-02-06
| | | | | | This allows us to use sanitizers to find bugs that matter. Signed-off-by: Martin Schanzenbach <schanzen@gnunet.org>
* UTIL: Allow only inlcusion of util glib-style.Martin Schanzenbach2022-12-04
|
* BUILD: Attempt to disentable platform.h, gnunet_common.h and ↵Martin Schanzenbach2022-12-04
| | | | gnunet_private_config.h insanity
* modernize namecache postgres implementationChristian Grothoff2022-11-22
|
* modernize datacache postgres implementationChristian Grothoff2022-11-22
|
* -fix conflictMartin Schanzenbach2022-10-18
|\
| * -DOC: Documentation cleanup pass through DATACACHE subsystemWillow Liquorice2022-10-03
| |
* | -remove unnecessary and badly used extra argument in postgres statement ↵Christian Grothoff2022-10-12
|/ | | | preparation
* implemented new DHT path signing with origin authenticationChristian Grothoff2022-07-07
|
* major modification to datacache to store route options (and clean up the API)Christian Grothoff2022-07-07
|
* -fix copy and paste errorChristian Grothoff2022-02-23
|
* -fix datacache to return 2x num_closest in both directionsChristian Grothoff2022-02-23
|
* -add DHT FIXMEChristian Grothoff2022-02-22
|
* -fix htons/htonl bug introduced by message format changeChristian Grothoff2022-02-19
|
* -more work on DHTU integrationChristian Grothoff2022-02-19
|
* DHT: modify API and protocol messages to add path signatures, except for now ↵Christian Grothoff2022-01-09
| | | | the actual signatures are just placeholders (signing and signature verification are missing)
* -dceChristian Grothoff2022-01-02
|
* BUILD: Remove --disable-testing. Issue #7033Martin Schanzenbach2021-10-11
|
* -fix make dist; fix warningsv0.15.0Martin Schanzenbach2021-08-08
|
* Revert "-coverity: use after free"Martin Schanzenbach2021-05-15
| | | | This reverts commit 168e501991b9506b588e1180527dad9c9662ae0c.
* -coverity: use after freeMartin Schanzenbach2021-05-15
|
* -Fix several incorrect uses of `i.e.'Alessio Vanni2021-04-24
| | | | With some other changes to sentences here and there as I found appropriate.
* 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>
* postgres: drop use of 'WITH OIDS'Daniel Golle2020-10-05
| | | | | | | | | | | | | | | | | | | | | | PostgreSQL since version 12 no longer supports 'WITH OIDS': Previously, a normally-invisible oid column could be specified during table creation using WITH OIDS; that ability has been removed. Columns can still be explicitly declared as type oid. Operations on tables that have columns created using WITH OIDS will need adjustment. The system catalogs that previously had hidden oid columns now have ordinary oid columns. Hence, SELECT * will now output those columns, whereas previously they would be displayed only if selected explicitly. Drop 'WITH OIDS' as it was stated even on tables for plugins which didn't make any use of the then exposed 'oid' column. In the case of datacache and datastore the 'oid' column is used, so replace the 'WITH OIDS' statement with an explicit 'oid' column having 'OID' type and a corresponding sequence. No measures are taken to still work with PostgreSQL before version 12. Users should update PostgreSQL to version 12 or newer. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* GNUNET_free_non_null -> GNUNET_freeChristian Grothoff2020-07-05
|
* modify GNUNET_PQ_connect_with_cfg to enable flexible loading of .sql filesChristian Grothoff2020-01-24
|
* tighten formatting rulesChristian Grothoff2019-10-31
|
* follow-up to win32 removal.ng02019-10-25
|
* libgnunetpq API change to fix #5733Christian Grothoff2019-10-11
|
* global reindent, now with uncrustify hook enabledChristian Grothoff2019-10-05
|
* remove CYGWIN codeblocks, drop vendored Windows openvpn, drop win32 specific ↵ng02019-09-10
| | | | | | | | | files. configures and builds okay. testsuite wasn't checked, will be checked. diff including the plibc removal is now around 14370 lines of code less.