mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
Add resolver for outbound dialer
This commit is contained in:
parent
ecac383477
commit
538a1f5909
32 changed files with 1058 additions and 222 deletions
|
@ -1,6 +1,8 @@
|
|||
package adapter
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
M "github.com/sagernet/sing/common/metadata"
|
||||
)
|
||||
|
||||
|
@ -17,6 +19,7 @@ type InboundContext struct {
|
|||
Destination M.Socksaddr
|
||||
Domain string
|
||||
Protocol string
|
||||
Outbound string
|
||||
|
||||
// cache
|
||||
|
||||
|
@ -26,3 +29,26 @@ type InboundContext struct {
|
|||
SourceGeoIPCode string
|
||||
GeoIPCode string
|
||||
}
|
||||
|
||||
type inboundContextKey struct{}
|
||||
|
||||
func WithContext(ctx context.Context, inboundContext *InboundContext) context.Context {
|
||||
return context.WithValue(ctx, (*inboundContextKey)(nil), inboundContext)
|
||||
}
|
||||
|
||||
func ContextFrom(ctx context.Context) *InboundContext {
|
||||
metadata := ctx.Value((*inboundContextKey)(nil))
|
||||
if metadata == nil {
|
||||
return nil
|
||||
}
|
||||
return metadata.(*InboundContext)
|
||||
}
|
||||
|
||||
func AppendContext(ctx context.Context) (context.Context, *InboundContext) {
|
||||
metadata := ContextFrom(ctx)
|
||||
if metadata != nil {
|
||||
return ctx, metadata
|
||||
}
|
||||
metadata = new(InboundContext)
|
||||
return WithContext(ctx, metadata), nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue