github页面上用于imap空闲的示例程序在连接到gmail imap服务器9分钟后会引发对等方重置连接。 在连接到移动热点互联网连接的树莓派3上运行dotnet核心控制台应用程序
该代码可完美地用于任何其他网络或PC。 仅当树莓连接到移动热点时它才起作用
该代码在首次连接时工作正常。在此单个功能上,它只会中断并引发对等方重置的连接
private void IdleLoop(object state) {
IdleState idle = (IdleState) state;
lock (idle.Client.SyncRoot) {
while (!idle.IsCancellationRequested) {
using (CancellationTokenSource timeout = new CancellationTokenSource()) {
using (Timer timer = new Timer(9 * 60 * 1000)) {
timer.Elapsed += (sender, e) => timeout.Cancel();
timer.AutoReset = false;
timer.Enabled = true;
try {
idle.SetTimeoutSource(timeout);
if (idle.Client.Capabilities.HasFlag(ImapCapabilities.Idle)) {
//TODO ERROR
idle.Client.Idle(timeout.Token, idle.CancellationToken);
}
else {
Logger.Log("Issuing NoOp command to IMAP servers...");
idle.Client.NoOp(idle.CancellationToken);
WaitHandle.WaitAny(new[] { timeout.Token.WaitHandle, idle.CancellationToken.WaitHandle });
Logger.Log("NoOp completed!");
}
}
catch (OperationCanceledException) {
break;
}
catch (ImapProtocolException) {
break;
}
catch (ImapCommandException) {
break;
}
finally {
idle.SetTimeoutSource(null);
}
}
}
}
}
}
答案 0 :(得分:1)
移动热点不是可靠的Internet连接,因此会出现“对等连接重置”错误。
您可以尝试减少超时时间,但是最终,您需要做的就是在遇到错误时重新连接(这是不可避免的-即使在更可靠的Internet连接上也可能发生)。