Is it possible to access the socket after the preread phase without proxy
preread_by_lua_block {
local socket = ngx.req.socket(true)
local data, err = socket:peek(4)
}
content_by_lua_block
{
??how to get the socket??
local socket,err = ngx.req.socket(true) -- err:duplicate call
}