MCPcopy Create free account
hub / github.com/apache/httpd / req_headers_out_table

Function req_headers_out_table

modules/lua/lua_request.c:332–336  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

330 return req_aprtable2luatable(L, r->headers_in);
331}
332static int req_headers_out_table(lua_State *L)
333{
334 request_rec *r = ap_lua_check_request_rec(L, 1);
335 return req_aprtable2luatable(L, r->headers_out);
336}
337static int req_err_headers_out_table(lua_State *L)
338{
339 request_rec *r = ap_lua_check_request_rec(L, 1);

Callers

nothing calls this directly

Calls 2

req_aprtable2luatableFunction · 0.85
ap_lua_check_request_recFunction · 0.70

Tested by

no test coverage detected