Add endpoint independent nat support

This commit is contained in:
世界 2022-07-26 19:15:04 +08:00
parent 3b0c717db3
commit b4bded886e
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
5 changed files with 200 additions and 44 deletions

14
timeout.go Normal file
View 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
}