mirror of
https://github.com/SagerNet/sing-tun.git
synced 2025-04-04 20:37:43 +03:00
Add endpoint independent nat support
This commit is contained in:
parent
3b0c717db3
commit
b4bded886e
5 changed files with 200 additions and 44 deletions
14
timeout.go
Normal file
14
timeout.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue