mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-26 20:21:35 +08:00
15 lines
216 B
Go
15 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
|
|
}
|