summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-03-23 09:41:50 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-03-23 09:41:50 +0100
commit73a457dea427f35aa8ac25bc018577f929b3fc9a (patch)
tree0c7db0eaf7a71419dba663ef09bb7e0b1eb9155d
parentd3d90ad9c00530d0ab8154b51050da12500b44bd (diff)
downloadcurl-bagder/tftp-remove-unused.tar.gz
tftp: remove unused struct fieldsbagder/tftp-remove-unused
Follow-up to d3d90ad9c00530d
-rw-r--r--lib/tftp.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/tftp.c b/lib/tftp.c
index ecba348d9..76d3ff451 100644
--- a/lib/tftp.c
+++ b/lib/tftp.c
@@ -129,8 +129,6 @@ struct tftp_state_data {
int retries;
int retry_time;
int retry_max;
- time_t start_time;
- time_t max_time;
time_t rx_time;
struct Curl_sockaddr_storage local_addr;
struct Curl_sockaddr_storage remote_addr;
@@ -206,8 +204,6 @@ static CURLcode tftp_set_timeouts(struct tftp_state_data *state)
timediff_t timeout_ms;
bool start = (state->state == TFTP_STATE_START) ? TRUE : FALSE;
- time(&state->start_time);
-
/* Compute drop-dead time */
timeout_ms = Curl_timeleft(state->data, NULL, start);
@@ -217,9 +213,6 @@ static CURLcode tftp_set_timeouts(struct tftp_state_data *state)
return CURLE_OPERATION_TIMEDOUT;
}
- /* timeout in milliseconds */
- state->max_time = timeout_ms;
-
if(timeout_ms > 0)
maxtime = (time_t)(timeout_ms + 500) / 1000;
else