1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-05 16:55:50 +03:00

Fix PR54848 in a 2.4.x backportable format. Ideally deprecating the use

of ->client in whatever version of 2.4 this is added into would be
more logical.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1837225 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jim Jagielski
2018-08-01 11:27:28 +00:00
parent 8658f30e34
commit c7c68752c8
7 changed files with 32 additions and 16 deletions

View File

@@ -1275,6 +1275,10 @@ static int lua_ap_scoreboard_worker(lua_State *L)
lua_pushstring(L, ws_record->client);
lua_settable(L, -3);
lua_pushstring(L, "client64");
lua_pushstring(L, ws_record->client64);
lua_settable(L, -3);
lua_pushstring(L, "conn_bytes");
lua_pushnumber(L, (lua_Number) ws_record->conn_bytes);
lua_settable(L, -3);