2017-01-26 14:46:44 -05:00
|
|
|
package internet
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"v2ray.com/core/common/net"
|
|
|
|
)
|
|
|
|
|
|
|
|
type key int
|
|
|
|
|
|
|
|
const (
|
|
|
|
streamSettingsKey key = iota
|
2018-09-17 09:12:58 -04:00
|
|
|
bindAddrKey
|
2017-01-26 14:46:44 -05:00
|
|
|
)
|
|
|
|
|
2018-09-07 08:50:25 -04:00
|
|
|
func ContextWithStreamSettings(ctx context.Context, streamSettings *MemoryStreamConfig) context.Context {
|
2017-01-26 14:46:44 -05:00
|
|
|
return context.WithValue(ctx, streamSettingsKey, streamSettings)
|
|
|
|
}
|
|
|
|
|
2018-09-07 08:50:25 -04:00
|
|
|
func StreamSettingsFromContext(ctx context.Context) *MemoryStreamConfig {
|
2017-02-26 08:38:41 -05:00
|
|
|
ss := ctx.Value(streamSettingsKey)
|
|
|
|
if ss == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2018-09-07 08:50:25 -04:00
|
|
|
return ss.(*MemoryStreamConfig)
|
2017-01-26 14:46:44 -05:00
|
|
|
}
|
|
|
|
|
2018-09-17 09:12:58 -04: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{}
|
|
|
|
}
|