2017-01-26 19:46:44 +00:00
|
|
|
package internet
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"v2ray.com/core/common/net"
|
|
|
|
)
|
|
|
|
|
|
|
|
type key int
|
|
|
|
|
|
|
|
const (
|
|
|
|
streamSettingsKey key = iota
|
|
|
|
dialerSrcKey
|
|
|
|
transportSettingsKey
|
|
|
|
securitySettingsKey
|
|
|
|
)
|
|
|
|
|
2018-09-07 12:50:25 +00:00
|
|
|
func ContextWithStreamSettings(ctx context.Context, streamSettings *MemoryStreamConfig) context.Context {
|
2017-01-26 19:46:44 +00:00
|
|
|
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)
|
2017-01-26 19:46:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func ContextWithDialerSource(ctx context.Context, addr net.Address) context.Context {
|
|
|
|
return context.WithValue(ctx, dialerSrcKey, addr)
|
|
|
|
}
|
|
|
|
|
|
|
|
func DialerSourceFromContext(ctx context.Context) net.Address {
|
|
|
|
if addr, ok := ctx.Value(dialerSrcKey).(net.Address); ok {
|
|
|
|
return addr
|
|
|
|
}
|
|
|
|
return net.AnyIP
|
|
|
|
}
|