| 667 | } |
| 668 | |
| 669 | static int |
| 670 | ts_lua_http_resp_cache_transformed(lua_State *L) |
| 671 | { |
| 672 | int action; |
| 673 | ts_lua_http_ctx *http_ctx; |
| 674 | |
| 675 | GET_HTTP_CONTEXT(http_ctx, L); |
| 676 | |
| 677 | action = luaL_checkinteger(L, 1); |
| 678 | |
| 679 | TSHttpTxnTransformedRespCache(http_ctx->txnp, action); |
| 680 | |
| 681 | return 0; |
| 682 | } |
| 683 | |
| 684 | static int |
| 685 | ts_lua_http_resp_cache_untransformed(lua_State *L) |
nothing calls this directly
no test coverage detected