mirror of https://github.com/v2ray/v2ray-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.
22 lines
666 B
22 lines
666 B
// Package proxyman defines applications for managing inbound and outbound proxies.
|
|
package proxyman
|
|
|
|
import (
|
|
"context"
|
|
|
|
"v2ray.com/core/common/session"
|
|
)
|
|
|
|
// ContextWithSniffingConfig is a wrapper of session.ContextWithContent.
|
|
// Deprecated. Use session.ContextWithContent directly.
|
|
func ContextWithSniffingConfig(ctx context.Context, c *SniffingConfig) context.Context {
|
|
content := session.ContentFromContext(ctx)
|
|
if content == nil {
|
|
content = new(session.Content)
|
|
ctx = session.ContextWithContent(ctx, content)
|
|
}
|
|
content.SniffingRequest.Enabled = c.Enabled
|
|
content.SniffingRequest.OverrideDestinationForProtocol = c.DestinationOverride
|
|
return ctx
|
|
}
|