1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 23:36:25 -04:00
v2fly/app/dispatcher/dispatcher.go

23 lines
387 B
Go
Raw Normal View History

2016-01-31 11:01:28 -05:00
package dispatcher
2018-07-16 07:47:00 -04:00
import "context"
2018-09-30 17:08:41 -04:00
//go:generate errorgen
2018-07-16 07:47:00 -04:00
type key int
const (
sniffing key = iota
)
func ContextWithSniffingResult(ctx context.Context, r SniffResult) context.Context {
return context.WithValue(ctx, sniffing, r)
}
func SniffingResultFromContext(ctx context.Context) SniffResult {
if c, ok := ctx.Value(sniffing).(SniffResult); ok {
return c
}
return nil
}