mirror of
https://github.com/tailscale/tailscale.git
synced 2025-10-29 07:09:33 +00:00
11 lines
237 B
Go
11 lines
237 B
Go
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
||
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
|
||
|
|
package derp
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
func (c *Client) RecvTimeoutForTest(timeout time.Duration) (m ReceivedMessage, err error) {
|
||
|
|
return c.recvTimeout(timeout)
|
||
|
|
}
|