Compare commits

...

2 Commits

Author SHA1 Message Date
Owen
2ff8df9a8d Merge branch 'dev' 2025-03-22 12:54:31 -04:00
Owen
9d80161ab7 Increases ping attempts to 15
Might help #7
2025-03-21 17:24:04 -04:00

View File

@@ -137,7 +137,7 @@ func startPingCheck(tnet *netstack.Net, serverIP string, stopChan chan struct{})
func pingWithRetry(tnet *netstack.Net, dst string) error {
const (
maxAttempts = 5
maxAttempts = 15
retryDelay = 2 * time.Second
)