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

Function lua_ap_rflush

modules/lua/lua_request.c:762–771  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

760}
761
762static int lua_ap_rflush (lua_State *L) {
763
764 int returnValue;
765 request_rec *r;
766 luaL_checktype(L, 1, LUA_TUSERDATA);
767 r = ap_lua_check_request_rec(L, 1);
768 returnValue = ap_rflush(r);
769 lua_pushboolean(L, (returnValue == 0));
770 return 1;
771}
772
773
774static const char* lua_ap_options(request_rec* r)

Callers

nothing calls this directly

Calls 2

ap_rflushFunction · 0.85
ap_lua_check_request_recFunction · 0.70

Tested by

no test coverage detected