Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-01-01 | Version bump | Maxim Biro | |
2016-01-01 | Add Dockerfile for the daemon | Maxim Biro | |
2016-01-01 | Flush stdout output | Maxim Biro | |
Apparently when no tty is attached, which is the case for Docker, the buffer size for stdout increases to the point that only half of the entire log might be written. | |||
2016-01-01 | Unify function comment style | Maxim Biro | |
Use doxygen java-style function comments already used in log.[c|h]. | |||
2016-01-01 | Fix license headers and file descriptions | Maxim Biro | |
2016-01-01 | Fix include paths | Maxim Biro | |
They are relative to the Makefile instead of the source file itself, which is unintuitive and is messing with my IDE. | |||
2016-01-01 | Remove dependency on files from testing directory | Maxim Biro | |
Also remove unneeded includes and refactor sleep define. | |||
2016-01-01 | Put command-line arguments related functions in a separate file | Maxim Biro | |
2016-01-01 | Put config-related functions in a separate file | Maxim Biro | |
bootstrap_node_packets.c was giving an error as it was being included twice and there were no include guards, so part of it was split into bootstrap_node_packets.h. | |||
2015-12-31 | Add ability to run the daemon in foreground | Maxim Biro | |
Useful for things like a Docker container or just running it in the terminal. Complements the stdout logging option. This is actually why the stdout logging was added in the first place -- to be used in the foreground mode, though nothing stops one from using stdout in the background mode, which one could redirect to a file. | |||
2015-12-31 | Fix wrong filename mentioned above license | Maxim Biro | |
2015-12-31 | Rename LOGGER_BACKEND to LOG_BACKEND | Maxim Biro | |
2015-12-31 | Add ability to specify multiple command line arguments | Maxim 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-31 | Make daemon use the new log code | Maxim Biro | |
"log" is a reserved name (log from math.h), so it got changed into write_log. | |||
2015-12-31 | Make logger a global object instead of an instance | Maxim 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-30 | Add logger object to be able to support multiple logging backends | Maxim Biro | |
2015-12-30 | Change log levels | Maxim 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-10-24 | Add synchronization protection for send_frame API functions | Eniz Vukovic | |
2015-10-13 | Fix typo and change logger config option | Eniz Vukovic | |
2015-10-11 | Remove old comment | Eniz Vukovic | |
2015-10-10 | New Adaptive BR algorithm, cleanups and fixes | Eniz Vukovic | |
2015-08-09 | Updated with upstream | mannol | |
2015-08-07 | Fixed memory leak during session cleanup and fixed naming. | mannol | |
2015-07-10 | Fixed CALL_STATE naming | mannol | |
2015-07-09 | Fixed documentation. | mannol | |
2015-07-08 | Merge branch 'master' of https://github.com/JFreegman/toxcore | irungentoo | |
2015-07-07 | Link changes. | irungentoo | |
2015-07-07 | Fix a couple API doc mistakes | Jfreegman | |
2015-06-30 | Implement handling capability change on rtp level | mannol | |
2015-06-28 | Removed useless parameter from new_TCP_server() | irungentoo | |
2015-06-27 | Renamed TOXAV_CALL_STATE to TOXAV_FRIEND_CALL_STATE | mannol | |
2015-06-27 | Added explanation about how audio callback works | mannol | |
2015-06-27 | Added payload turning off by setting bit rate to 0 | mannol | |
2015-06-25 | Merge remote-tracking branch 'upstream/master' into new_api | mannol | |
2015-06-20 | Merge branch 'typo' of https://github.com/zetok/ProjectTox-Core | irungentoo | |
2015-06-20 | Merge branch 'doc' of https://github.com/zetok/ProjectTox-Core | irungentoo | |
2015-06-20 | Fix typo in readme: "enrironment" → "environment" | Zetok Zalbavar | |
2015-06-20 | Add real instruction on how to use APIDSL and astyle | Zetok Zalbavar | |
also add to "tox{,.in}.h" note that "tox.h" shouldn't be edited directly, pointing to "tox.in.h" | |||
2015-06-20 | Improve documentation about tcp_port | Zetok Zalbavar | |
Apparently it's not entirely clear that it's not needed in clients. v2, as provided by @nurupo | |||
2015-06-05 | Forgot about this | mannol | |
2015-06-05 | Rebased on master and removed alpha channel (again) | mannol | |
2015-06-03 | Return error if file_id parameter is NULL. | irungentoo | |
2015-05-29 | Comment fix. | irungentoo | |
2015-05-28 | Fixed comment. | irungentoo | |
2015-05-25 | tox_new returns NULL on failure. | irungentoo | |
2015-05-24 | Merge branch 'bootstrapd-update2' of ↵ | irungentoo | |
https://github.com/nurupo/InsertProjectNameHere | |||
2015-05-22 | Move savedata to options struct. | irungentoo | |
Add a way to select the type of savedata (normal savedata, load a secret key, potentially others?) to load. | |||
2015-05-22 | Updated with master | mannol | |
2015-05-20 | Merge branch 'tcp_server' | irungentoo | |
2015-05-16 | Added apidsl input file | mannol | |