mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
14 lines
216 B
Go
14 lines
216 B
Go
//go:build !(linux || darwin)
|
|
|
|
package tf
|
|
|
|
import (
|
|
"context"
|
|
"syscall"
|
|
"time"
|
|
)
|
|
|
|
func waitAck(ctx context.Context, conn syscall.Conn, fallbackDelay time.Duration) error {
|
|
time.Sleep(fallbackDelay)
|
|
return nil
|
|
}
|