v2ray-core/transport/internet/context.go

39 lines
823 B
Go
Raw Normal View History

package internet
import (
"context"
"v2ray.com/core/common/net"
)
type key int
const (
streamSettingsKey key = iota
dialerSrcKey
2018-09-17 13:12:58 +00:00
bindAddrKey
)
2018-09-07 12:50:25 +00:00
func ContextWithStreamSettings(ctx context.Context, streamSettings *MemoryStreamConfig) context.Context {
return context.WithValue(ctx, streamSettingsKey, streamSettings)
}
2018-09-07 12:50:25 +00:00
func StreamSettingsFromContext(ctx context.Context) *MemoryStreamConfig {
2017-02-26 13:38:41 +00:00
ss := ctx.Value(streamSettingsKey)
if ss == nil {
return nil
}
2018-09-07 12:50:25 +00:00
return ss.(*MemoryStreamConfig)
}
2018-09-17 13:12:58 +00:00
func ContextWithBindAddress(ctx context.Context, dest net.Destination) context.Context {
return context.WithValue(ctx, bindAddrKey, dest)
}
func BindAddressFromContext(ctx context.Context) net.Destination {
if addr, ok := ctx.Value(bindAddrKey).(net.Destination); ok {
return addr
}
return net.Destination{}
}