mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
d5916f6393
This fixes an issue with mux usage of context for storing vars. Also the old version is 2 years old. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
24 lines
380 B
Go
24 lines
380 B
Go
// +build go1.7
|
|
|
|
package mux
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
)
|
|
|
|
func contextGet(r *http.Request, key interface{}) interface{} {
|
|
return r.Context().Value(key)
|
|
}
|
|
|
|
func contextSet(r *http.Request, key, val interface{}) *http.Request {
|
|
if val == nil {
|
|
return r
|
|
}
|
|
|
|
return r.WithContext(context.WithValue(r.Context(), key, val))
|
|
}
|
|
|
|
func contextClear(r *http.Request) {
|
|
return
|
|
}
|