mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-03 03:47:39 +03:00
14 lines
327 B
Go
14 lines
327 B
Go
package tun
|
|
|
|
import "context"
|
|
|
|
type needTimeoutKey struct{}
|
|
|
|
func ContextWithNeedTimeout(ctx context.Context, need bool) context.Context {
|
|
return context.WithValue(ctx, (*needTimeoutKey)(nil), need)
|
|
}
|
|
|
|
func NeedTimeoutFromContext(ctx context.Context) bool {
|
|
need, _ := ctx.Value((*needTimeoutKey)(nil)).(bool)
|
|
return need
|
|
}
|