remove unused functions

pull/432/head
Darien Raymond 8 years ago
parent 27b0401c20
commit f99bd8b8b2
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

@ -14,10 +14,7 @@ const (
originalDestinationKey originalDestinationKey
inboundDestinationKey inboundDestinationKey
inboundTagKey inboundTagKey
outboundTagKey
resolvedIPsKey resolvedIPsKey
allowPassiveConnKey
dispatcherKey
) )
func ContextWithSource(ctx context.Context, src net.Destination) context.Context { func ContextWithSource(ctx context.Context, src net.Destination) context.Context {
@ -80,18 +77,6 @@ func InboundTagFromContext(ctx context.Context) string {
return v.(string) return v.(string)
} }
func ContextWithOutboundTag(ctx context.Context, tag string) context.Context {
return context.WithValue(ctx, outboundTagKey, tag)
}
func OutboundTagFromContext(ctx context.Context) string {
v := ctx.Value(outboundTagKey)
if v == nil {
return ""
}
return v.(string)
}
func ContextWithResolveIPs(ctx context.Context, ips []net.Address) context.Context { func ContextWithResolveIPs(ctx context.Context, ips []net.Address) context.Context {
return context.WithValue(ctx, resolvedIPsKey, ips) return context.WithValue(ctx, resolvedIPsKey, ips)
} }

Loading…
Cancel
Save