(h http.Header)
| 398 | } |
| 399 | |
| 400 | func serveHeaderWalk(h http.Header) func(lua.LValue, lua.LValue) { |
| 401 | return func(k, v lua.LValue) { |
| 402 | h.Set(k.String(), v.String()) |
| 403 | } |
| 404 | } |
| 405 | |
| 406 | func getContextValue(f filters.FilterContext) func(*lua.LState) int { |
| 407 | var request, response, state_bag, path_param *lua.LTable |
no test coverage detected
searching dependent graphs…