| 798 | } |
| 799 | |
| 800 | static const char* lua_ap_basic_auth_pw(request_rec* r) |
| 801 | { |
| 802 | const char* pw = NULL; |
| 803 | ap_get_basic_auth_pw(r, &pw); |
| 804 | return pw ? pw : ""; |
| 805 | } |
| 806 | |
| 807 | static int lua_ap_limit_req_body(request_rec* r) |
| 808 | { |
nothing calls this directly
no test coverage detected