diff options
author | tiptorrent development team <tiptorrent@soleta.eu> | 2021-09-27 11:27:30 +0200 |
---|---|---|
committer | tiptorrent development team <tiptorrent@soleta.eu> | 2021-09-29 15:49:21 +0200 |
commit | 6010fe62fda49ffb6a3fa7038b0c2feb61767263 (patch) | |
tree | 6551b45191468e49585d4efdb8b623bf9748db19 /src/core.h | |
parent | 6a81079dc1a9d4deea7d8faa787baed2ffe80556 (diff) |
download checksum file directly from server
Remove assumption on small file to shortcircuit the redirect logic.
Diffstat (limited to 'src/core.h')
-rw-r--r-- | src/core.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -15,8 +15,6 @@ extern const char *root; extern int max_clients; extern int num_clients; extern bool redirect; -/* max_client logic only applies for files larger than 1024 bytes. */ -#define FILE_SIZE_THRESHOLD 1024ULL enum tip_client_state { TIP_CLIENT_PENDING = 0, @@ -50,6 +48,7 @@ struct tip_client { enum tip_http_method method; const char *uri; const char *path; + bool checksum; uint32_t chunk; off_t size; off_t left; @@ -67,9 +66,9 @@ static inline int tip_client_socket(const struct tip_client *cli) return cli->io.fd; } -static inline bool tip_client_large_file(const struct tip_client *cli) +static inline bool tip_client_checksum_file(const struct tip_client *cli) { - return cli->size > FILE_SIZE_THRESHOLD; + return cli->checksum; } void tip_client_pending(struct tip_client *cli); |