summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-12-31Add ability to specify multiple command line argumentsMaxim Biro
Needed in order to specify which log backend to use. Init scripts need to be updated to contain --config before the path to the config file.
2015-12-31Make daemon use the new log codeMaxim Biro
"log" is a reserved name (log from math.h), so it got changed into write_log.
2015-12-31Make logger a global object instead of an instanceMaxim Biro
Passing Logger object into every function isn't fun. See for yourself: something as simple as a public key printing function turns from >void print_public_key(const uint8_t *public_key) to >void print_public_key(Logger *logger, const uint8_t *public_key)
2015-12-30Add logger object to be able to support multiple logging backendsMaxim Biro
2015-12-30Change log levelsMaxim Biro
Some of them were set incorrectly, e.g. something that caused the daemon to exit was marked as just a warning, instead of an error. Removed debug level as it was hard to decide whether something should go into info or debug. This is mostly because the use of the debug level wasn't well defined. Debug should be used for information that could help a user to debug an issue, but messages marked as debug were by the most part the "success" log messages, which could go into info level instead.
2015-12-17Fixed possible bug.irungentoo
2015-12-17Allow 0 length sendnode.irungentoo
2015-12-16Send get nodes instead of ping to timing out nodes.irungentoo
2015-12-16This is still useful.irungentoo
2015-12-16Slightly increase ping timeout.irungentoo
2015-12-16Less packet spam.irungentoo
2015-12-16Improved the to_ping list.irungentoo
2015-12-15Fixed use of it after free.irungentoo
2015-12-15Onion test fixed to work with faster DHT.irungentoo
2015-12-15More efficient DHT searching.irungentoo
2015-12-14Sort list if timed out nodes are in the middle of the list.irungentoo
2015-12-14Send get nodes more to closer nodes than further nodes.irungentoo
2015-12-12Merge branch 'LittleVulpix-donatorfile' of ↵irungentoo
https://github.com/LittleVulpix/toxcore
2015-12-12Small onion search improvement.irungentoo
2015-12-12Update so this works with the new distance function.irungentoo
2015-12-12Added my pixfile!LittleVulpix
2015-12-11Unused variable.irungentoo
2015-12-11Remove useless vars.irungentoo
2015-12-11Better DHT tests.irungentoo
2015-12-11More DHT fixes.irungentoo
2015-12-11DHT fix.irungentoo
2015-12-11DHT improvements.irungentoo
Feed better nodes to onion, bootstrap off close clients when DHT friend is added.
2015-12-11DHT fix.irungentoo
Return only closest nodes in get nodes packet.
2015-12-11DHT fixes.irungentoo
2015-12-10Check if node can be stored before sorting.irungentoo
2015-12-09Small fix.irungentoo
2015-12-09DHT fix.irungentoo
Improve DHT distance function.
2015-12-08Improve likelyhood of the closest nodes being in our lists.irungentoo
2015-12-08uint32_t -> unsigned int.irungentoo
2015-12-08Forgot to stage this before committing.irungentoo
2015-12-08Fixed DHT bug.irungentoo
2015-12-08If we receive a packet from a node we are searching for, ping it.irungentoo
2015-12-02Merge branch 'master' of https://github.com/mannol/toxcoreirungentoo
2015-12-01Slightly increased number of peers to announce to.irungentoo
Some test fixes.
2015-11-29Fix error reporting in toxav_call()Eniz Vukovic
2015-11-26Forgot to commit these.irungentoo
2015-11-21Increase max file transfer speed.irungentoo
Fix bug that limited it to 1K packets per second.
2015-11-21More file transfer improvements.irungentoo
2015-11-20File transfer fix.irungentoo
2015-11-20File transfer fix.irungentoo
2015-11-19Send queue size should not affect the speed of packets being resent.irungentoo
2015-11-19Fixed division by 0.irungentoo
2015-11-19Attempted fix of disconnect when switching from TCP to UDP.irungentoo
2015-11-19Merge branch 'fix-broken-link' of https://github.com/duthils/toxcoreirungentoo
2015-11-19Merge branch 'master' of https://github.com/helium-software/toxcoreirungentoo