| 760 | } |
| 761 | |
| 762 | static 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 | |
| 774 | static const char* lua_ap_options(request_rec* r) |
nothing calls this directly
no test coverage detected