2018-03-19 08:40:47 +00:00
|
|
|
// Package proxyman defines applications for managing inbound and outbound proxies.
|
2016-01-31 16:01:28 +00:00
|
|
|
package proxyman
|
|
|
|
|
|
|
|
import (
|
2017-01-14 23:48:37 +00:00
|
|
|
"context"
|
2016-01-31 16:01:28 +00:00
|
|
|
)
|
|
|
|
|
2017-04-24 22:19:22 +00:00
|
|
|
type key int
|
|
|
|
|
|
|
|
const (
|
|
|
|
protocolsKey key = iota
|
|
|
|
)
|
|
|
|
|
|
|
|
func ContextWithProtocolSniffers(ctx context.Context, list []KnownProtocols) context.Context {
|
|
|
|
return context.WithValue(ctx, protocolsKey, list)
|
|
|
|
}
|
|
|
|
|
2018-03-15 02:32:10 +00:00
|
|
|
func ProtocolSniffersFromContext(ctx context.Context) []KnownProtocols {
|
2017-04-24 22:19:22 +00:00
|
|
|
if list, ok := ctx.Value(protocolsKey).([]KnownProtocols); ok {
|
|
|
|
return list
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|