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.
19 lines
392 B
19 lines
392 B
package internet
|
|
|
|
import "context"
|
|
|
|
type systemDialer int
|
|
|
|
const systemDialerKey systemDialer = 0
|
|
|
|
func ContextWithLookupDomain(ctx context.Context, domain string) context.Context {
|
|
return context.WithValue(ctx, systemDialerKey, domain)
|
|
}
|
|
|
|
func LookupDomainFromContext(ctx context.Context) string {
|
|
if domain, ok := ctx.Value(systemDialerKey).(string); ok {
|
|
return domain
|
|
}
|
|
return ""
|
|
}
|