(qsKey string)
| 586 | const allowedCustomQueryPrefix = "x-" |
| 587 | |
| 588 | func isCustomQueryValue(qsKey string) bool { |
| 589 | return strings.HasPrefix(qsKey, allowedCustomQueryPrefix) |
| 590 | } |
| 591 | |
| 592 | var ( |
| 593 | md5Pool = sync.Pool{New: func() interface{} { return md5.New() }} |
no outgoing calls