aboutsummaryrefslogblamecommitdiffstats
path: root/swarm/sctx/sctx.go
blob: fb7d35b0005ba5905a38fb2c66b3bd24dcac558f (plain) (tree)
1
2
3
4
5
6
7
8
9
10

            

                


                                 
 

                                                                  
                                                               


                                          
                                                     




                        
package sctx

import "context"

type (
    HTTPRequestIDKey struct{}
    requestHostKey   struct{}
)

func SetHost(ctx context.Context, domain string) context.Context {
    return context.WithValue(ctx, requestHostKey{}, domain)
}

func GetHost(ctx context.Context) string {
    v, ok := ctx.Value(requestHostKey{}).(string)
    if ok {
        return v
    }
    return ""
}