1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-29 06:56:44 +02:00

Remove file transfer timeoutes, and remove a couple unused functions

This commit is contained in:
Jfreegman
2016-02-25 17:58:02 -05:00
parent a474e3bf39
commit 2e609c46f6
4 changed files with 0 additions and 73 deletions

View File

@ -34,7 +34,6 @@
#define GiB 1073741824 /* 1024^3 */
#define MAX_FILES 32
#define TIMEOUT_FILESENDER 120
typedef enum FILE_TRANSFER_STATE {
FILE_TRANSFER_INACTIVE,
@ -68,9 +67,6 @@ struct FileTransfer {
uint8_t file_id[TOX_FILE_ID_LENGTH];
};
/* Checks for timed out file transfers and closes them. */
void check_file_transfer_timeouts(Tox *m);
/* creates initial progress line that will be updated during file transfer.
progline must be at lesat MAX_STR_SIZE bytes */
void init_progress_bar(char *progline);