mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
632 B
29 lines
632 B
// +build !confonly |
|
|
|
package core |
|
|
|
import ( |
|
"context" |
|
) |
|
|
|
// XrayKey is the key type of Instance in Context, exported for test. |
|
type XrayKey int |
|
|
|
const xrayKey XrayKey = 1 |
|
|
|
// FromContext returns an Instance from the given context, or nil if the context doesn't contain one. |
|
func FromContext(ctx context.Context) *Instance { |
|
if s, ok := ctx.Value(xrayKey).(*Instance); ok { |
|
return s |
|
} |
|
return nil |
|
} |
|
|
|
// MustFromContext returns an Instance from the given context, or panics if not present. |
|
func MustFromContext(ctx context.Context) *Instance { |
|
x := FromContext(ctx) |
|
if x == nil { |
|
panic("X is not in context.") |
|
} |
|
return x |
|
}
|
|
|