aboutsummaryrefslogtreecommitdiff
path: root/src/fs
Commit message (Collapse)AuthorAge
* -comments: the world ain't all malepsyc://loupsycedyglgamf.onion/~lynX2018-06-27
|
* tests: use port numbers that are unlikely to collide with user ports (just ↵psyc://loupsycedyglgamf.onion/~lynX1984-04-04
| | | | happened)
* UINT_MAX instead of -1Hernani Marques2018-06-25
|
* fix https://gnunet.org/bugs/view.php?id=4904Schanzenbach, Martin2018-06-24
|
* rename FORCESTART into IMMEDIATE_START (#4547b)psyc://loupsycedyglgamf.onion/~lynX1984-04-04
|
* Merge branch 'master' of ssh://gnunet.org/gnunetxrs2018-06-23
|\
| * AUTOSTART renamed into START_ON_DEMAND (#4547a)psyc://loupsycedyglgamf.onion/~lynX1984-04-04
| |
* | fix fs/test_gnunet_fs_psd.py.in for python3xrs2018-06-23
|/
* really fix #5243 -- it is fun to fix python2+3 for testsuite which will ↵Nils Gillmann2018-06-14
| | | | | | become irrelevant when in the future we only support 2.7 legacy and some range of 3.x Signed-off-by: Nils Gillmann <ng0@n0.is>
* Fix #5243Nils Gillmann2018-06-14
| | | | | | This test has too much boilerplate like the rest and should be fixed by pytest eventually. Signed-off-by: Nils Gillmann <ng0@n0.is>
* paragraph for gnunet devs that don't know how to use the webpsyc://loupsycedyglgamf.onion/~lynX2018-06-07
|
* glitch in the license text detected by hyazinthe, thank you!psyc://loupsycedyglgamf.onion/~lynX2018-06-07
|
* second batch complete. WE ARE AFFERO AGPL NOW!psyc://loupsycedyglgamf.onion/~lynX2018-06-06
|
* first batch of license fixes (boring)psyc://loupsycedyglgamf.onion/~lynX2018-06-05
|
* more flakes.Nils Gillmann2018-05-23
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* fix test locationsNils Gillmann2018-05-22
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* text_gnunet_fs_psd.py.in: Fix loading pxpect + flake8'ismNils Gillmann2018-05-22
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* +Nils Gillmann2018-05-19
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* get rid of plain memcpy callsChristian Grothoff2018-05-13
|
* Switch to $GNUNET_TMP in all configuration files.Nils Gillmann2018-05-06
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* eliminate DHT PUT OK message by using MQ feature of calling continuation ↵Christian Grothoff2018-04-30
| | | | when transmission is complete
* src/fs/test_gnunet_fs_psd.py.in: Use py2 and py3.4+ compatible importng02018-03-03
|
* indentation fixesChristian Grothoff2018-01-21
|
* Try to keep the fs->core MQ from growing too largeDavid Barksdale2018-01-10
|
* fix potential use of uninitialized keyChristian Grothoff2018-01-06
|
* fix indentation and use after free in tcp pluginChristian Grothoff2018-01-06
|
* add assertionChristian Grothoff2018-01-04
|
* merge branch 'refactoring-scheduler'lurchi2017-12-30
|\
| * Don't consider restart when the test action already finishedlurchi2017-09-04
| | | | | | | | | | | | | | | | | | | | | | | | In the old scheduler implementation tasks with different priorities were run in the same event loop iteration, in the new implementation this cannot be guaranteed anymore, as it's driver-dependent. For the FS tests this means that when adding both an 'abort' task and a 'restart' task (the latter with higher priority) the 'restart' task didn't take effect with the old implementation but does with the new implementation (and leads to an assertion failure). Not scheduling the 'restart' task when the action (download/publish) has already finished successfully solves this issue.
* | Merge branch 'fix_social'lurchi2017-12-30
|\ \
| * | allow MST callback to distinguish between disconnect and parse error ↵Christian Grothoff2017-10-29
| | | | | | | | | | | | situations, and only log for the hard errors
* | | Fix memory leak in publishing UBlocksDavid Barksdale2017-11-12
| | |
* | | fs: fix typos in mime-typesDaniel Golle2017-11-08
| | | | | | | | | | | | replace 'applixation' with 'application'.
* | | FS: Add 'nar' and 'narinfo' to fs_misc.cng02017-11-08
| | |
* | | Support filter-size in fs block pluginDavid Barksdale2017-10-01
|/ / | | | | | | This should fix some assertions failures I'm seeing in the DHT service.
* | fix #5094 as suggested by reporterChristian Grothoff2017-07-24
| |
* | get psd test to pass on my systemChristian Grothoff2017-07-21
| |
* | fix #5107Christian Grothoff2017-07-18
|/
* [fs] Fix unindex after API changeDavid Barksdale2017-03-31
|
* rename GNUNET_GETOPT functions to achieve better consistencyChristian Grothoff2017-03-25
|
* [datastore] Return and update replicationDavid Barksdale2017-03-22
| | | | | | This fixes a couple FIXMEs in the datastore code. The replication value is now returned from the datastore and the update function can increase the replication.
* [datastore] Fix #3743David Barksdale2017-03-19
| | | | | | | | | | | | | | | | | | | | This change adds support for key == NULL to the datastore plugins and replaces the offset argument with a next_uid and random arguments to increase performance in the key == NULL case. With the offset argument a datastore plugin would have to count all matching keys before fetching the key at the right offset, which would iterate over the entire database in the case of key == NULL. The offset argument was used in two ways: to iterate over a set of matching values and to start iteration at a random matching value. The new API seperates these into two arguments: if random is true it will return a random matching value, otherwise next_uid can be set to uid + 1 to return the next matching value. The random argument was not added to get_zero_anonymity. This function is used to periodically insert zero anonymity values into the DHT. I don't think it's necessary to randomize this.
* more renamings relating to 'new' service now just being the 'normal' serviceChristian Grothoff2017-03-17
|
* Merge branch 'master' into getoptChristian Grothoff2017-03-17
|\
| * removing dead/legacy server/connection logic, except for in tcp/wlan/bt ↵Christian Grothoff2017-03-16
| | | | | | | | plugins (which will be updated 'later')
* | porting fs finished.Marcello Stanisci2017-03-16
| |
* | porting gnunet-publish + others..Marcello Stanisci2017-03-16
|/
* renaming CADET APIs to match naming conventions again, now that the old ↵Christian Grothoff2017-03-13
| | | | symbols have been purged
* rename libgnunetcadetnew -> libgnunetcadetChristian Grothoff2017-03-13
|
* fix use of uninitialized value host1 on error loggingChristian Grothoff2017-03-10
|