From 5f4bacee397bcb5b7bb2ca2055c4423c66f6c660 Mon Sep 17 00:00:00 2001 From: Harald Wolff Date: Mon, 8 Jul 2019 13:16:33 +0200 Subject: [PATCH] Change default timeout to 750ms --- SNMPEngine.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SNMPEngine.cs b/SNMPEngine.cs index e749b5c..9a6e9a6 100644 --- a/SNMPEngine.cs +++ b/SNMPEngine.cs @@ -38,7 +38,7 @@ namespace ln.snmp public UdpClient LocalEndpoint { get; private set; } - public int Timeout { get; set; } = 2500; + public int Timeout { get; set; } = 750; private Dictionary queuedRequests = new Dictionary(); private bool shutdown = false;