-
-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
os error 10054, webrtc_dtls::conn] server: read_and_buffer exit with Alert is Fatal or Close Notify #262
Comments
My temporary workaround. Set-Location "C:\\path\\to\\lan-mouse"
$processName = "lan-mouse" # Without .exe
$argumentList = "-d"
$searchString = "webrtc"
$timeout = 5
$logFile = "$processName-log.txt"
function Start-ProcessAndMonitor {
Start-Process -FilePath $processName -ArgumentList $argumentList -NoNewWindow -RedirectStandardError $logFile
Start-Sleep -Seconds 5
}
function MonitorOutput {
$output = Get-Content -Path $logFile -Tail 10
if ($output -match $searchString) {
Write-Host "Error detected, restarting $processName"
Stop-Process -Name $processName -Force
Start-ProcessAndMonitor
}
}
Start-ProcessAndMonitor
while ($true) {
Start-Sleep -Seconds $timeout
MonitorOutput
} |
Could you send a full log of this? The above log from the linux side seems to be after the connection has already been closed. |
This may not related issue, however windows side seems to break connection when it's long idle state. Had same log on windows side:
Had this log on nixos side:
After the connection broke, windows does not listen any inputs from nixos side. nixos side throws Connection time out. Update: |
After a couple minutes of use (pretty fast use), the mouse cannot move to the remote computer.
ubuntu 25.04 - host (ufw - off), GNOME Shell 47.0, wayland
windows 10 22H2 - remote (firewall - off, uac - off)
Lunux host conf
Remote windows conf
Linux Host LOG
Remote windows LOG
The text was updated successfully, but these errors were encountered: