summaryrefslogtreecommitdiff
path: root/testing/nTox.c
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2015-03-18 12:54:00 -0400
committerirungentoo <irungentoo@gmail.com>2015-03-18 12:54:00 -0400
commit5b7cbc89560828c2f5b0b2d1f4cdd738da0797a0 (patch)
tree0a2a36ec3b0d9e1e70100990ae6e47355da84a22 /testing/nTox.c
parentad87dbb470cb9b223c66727ab6ad615f46e73a37 (diff)
Api changes.
receive to recv in file receive functions. Added TOX_MAX_FILENAME_LENGTH define.
Diffstat (limited to 'testing/nTox.c')
-rw-r--r--testing/nTox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/nTox.c b/testing/nTox.c
index 9e114ba5..9a043172 100644
--- a/testing/nTox.c
+++ b/testing/nTox.c
@@ -1269,9 +1269,9 @@ int main(int argc, char *argv[])
1269 tox_callback_friend_status_message(m, print_statuschange, NULL); 1269 tox_callback_friend_status_message(m, print_statuschange, NULL);
1270 tox_callback_group_invite(m, print_invite, NULL); 1270 tox_callback_group_invite(m, print_invite, NULL);
1271 tox_callback_group_message(m, print_groupmessage, NULL); 1271 tox_callback_group_message(m, print_groupmessage, NULL);
1272 tox_callback_file_receive_chunk(m, write_file, NULL); 1272 tox_callback_file_recv_chunk(m, write_file, NULL);
1273 tox_callback_file_recv_control(m, file_print_control, NULL); 1273 tox_callback_file_recv_control(m, file_print_control, NULL);
1274 tox_callback_file_receive(m, file_request_accept, NULL); 1274 tox_callback_file_recv(m, file_request_accept, NULL);
1275 tox_callback_file_request_chunk(m, tox_file_request_chunk, NULL); 1275 tox_callback_file_request_chunk(m, tox_file_request_chunk, NULL);
1276 tox_callback_group_namelist_change(m, print_groupnamelistchange, NULL); 1276 tox_callback_group_namelist_change(m, print_groupnamelistchange, NULL);
1277 1277