summaryrefslogtreecommitdiff
path: root/toxcore/tox.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-09-12 16:48:35 +0100
committeriphydf <iphydf@users.noreply.github.com>2016-09-16 12:06:02 +0100
commit1494e474dde58ec6e446cdbfad9a8d89f6c4796c (patch)
treee454a18a0f61468d10833d8e80039d025f94f568 /toxcore/tox.h
parent37c041f8159f7e89f2585243e9b8073f47d77fd1 (diff)
Ensure that all TODOs have an owner.
In the future, all TODOs added either need a bug number (TODO(#NN)) or a person's github user name. By default, I made irungentoo the owner of all toxcore TODOs, mannol the owner of toxav TODOs, and myself the owner of API TODOs.
Diffstat (limited to 'toxcore/tox.h')
-rw-r--r--toxcore/tox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toxcore/tox.h b/toxcore/tox.h
index 60110ea8..a8488aeb 100644
--- a/toxcore/tox.h
+++ b/toxcore/tox.h
@@ -282,7 +282,7 @@ uint32_t tox_max_friend_request_length(void);
282uint32_t tox_max_message_length(void); 282uint32_t tox_max_message_length(void);
283 283
284/** 284/**
285 * Maximum size of custom packets. TODO: should be LENGTH? 285 * Maximum size of custom packets. TODO(iphydf): should be LENGTH?
286 */ 286 */
287#define TOX_MAX_CUSTOM_PACKET_SIZE 1373 287#define TOX_MAX_CUSTOM_PACKET_SIZE 1373
288 288
@@ -928,7 +928,7 @@ typedef void tox_self_connection_status_cb(Tox *tox, TOX_CONNECTION connection_s
928 * amounts of time. Clients should therefore not immediately bootstrap on 928 * amounts of time. Clients should therefore not immediately bootstrap on
929 * receiving a disconnect. 929 * receiving a disconnect.
930 * 930 *
931 * TODO: how long should a client wait before bootstrapping again? 931 * TODO(iphydf): how long should a client wait before bootstrapping again?
932 */ 932 */
933void tox_callback_self_connection_status(Tox *tox, tox_self_connection_status_cb *callback); 933void tox_callback_self_connection_status(Tox *tox, tox_self_connection_status_cb *callback);
934 934