1234567891011121314 |
- //go:build !(linux || darwin || windows)
- package tf
- import (
- "context"
- "net"
- "time"
- )
- func writeAndWaitAck(ctx context.Context, conn *net.TCPConn, payload []byte, fallbackDelay time.Duration) error {
- time.Sleep(fallbackDelay)
- return nil
- }
|