2017-01-03 08:21:59 -05:00
|
|
|
// Package proxyman defines applications for manageing inbound and outbound proxies.
|
2016-01-31 11:01:28 -05:00
|
|
|
package proxyman
|
|
|
|
|
2017-12-02 19:04:57 -05:00
|
|
|
//go:generate go run $GOPATH/src/v2ray.com/core/common/errors/errorgen/main.go -pkg proxyman -path App,Proxyman
|
2017-04-08 19:43:25 -04:00
|
|
|
|
2016-01-31 11:01:28 -05:00
|
|
|
import (
|
2017-01-14 18:48:37 -05:00
|
|
|
"context"
|
2016-01-31 11:01:28 -05:00
|
|
|
)
|
|
|
|
|
2017-04-24 18:19:22 -04:00
|
|
|
type key int
|
|
|
|
|
|
|
|
const (
|
|
|
|
protocolsKey key = iota
|
|
|
|
)
|
|
|
|
|
|
|
|
func ContextWithProtocolSniffers(ctx context.Context, list []KnownProtocols) context.Context {
|
|
|
|
return context.WithValue(ctx, protocolsKey, list)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ProtocoSniffersFromContext(ctx context.Context) []KnownProtocols {
|
|
|
|
if list, ok := ctx.Value(protocolsKey).([]KnownProtocols); ok {
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|