Fix multiplex client dialer context

This commit is contained in:
世界 2024-04-29 11:55:25 +08:00
parent c6164c9eca
commit 8d85c92356
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 27 additions and 1 deletions

View file

@ -96,3 +96,12 @@ func ExtendContext(ctx context.Context) (context.Context, *InboundContext) {
}
return WithContext(ctx, &newMetadata), &newMetadata
}
func OverrideContext(ctx context.Context) context.Context {
if metadata := ContextFrom(ctx); metadata != nil {
var newMetadata InboundContext
newMetadata = *metadata
return WithContext(ctx, &newMetadata)
}
return ctx
}