| 682 | } |
| 683 | |
| 684 | static int |
| 685 | ts_lua_http_resp_cache_untransformed(lua_State *L) |
| 686 | { |
| 687 | int action; |
| 688 | ts_lua_http_ctx *http_ctx; |
| 689 | |
| 690 | GET_HTTP_CONTEXT(http_ctx, L); |
| 691 | |
| 692 | action = luaL_checkinteger(L, 1); |
| 693 | |
| 694 | TSHttpTxnUntransformedRespCache(http_ctx->txnp, action); |
| 695 | |
| 696 | return 0; |
| 697 | } |
| 698 | |
| 699 | static int |
| 700 | ts_lua_http_get_client_protocol_stack(lua_State *L) |
nothing calls this directly
no test coverage detected