Change default upload timeout to 15 minutes

In response to #52.
This commit is contained in:
Joseph C. Lehner 2020-09-22 21:38:36 +02:00
parent 7b398453db
commit 69451e1d41

2
main.c
View file

@ -133,7 +133,7 @@ int main(int argc, char **argv)
bool list = false, have_dest_mac = false;
struct nmrpd_args args = {
.rx_timeout = 1000,
.ul_timeout = 5 * 60,
.ul_timeout = 15 * 60,
.tftpcmd = NULL,
.file_local = NULL,
.file_remote = NULL,