Fix default upload timeout

This commit is contained in:
Joseph C. Lehner 2020-12-06 16:52:05 +01:00
parent e3cecc0bfb
commit 9c7e7f1f80

2
main.c
View file

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