MCPcopy Create free account
hub / github.com/apache/trafficserver / ts_lua_http_resp_cache_transformed

Function ts_lua_http_resp_cache_transformed

plugins/lua/ts_lua_http.cc:669–682  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

667}
668
669static int
670ts_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
684static int
685ts_lua_http_resp_cache_untransformed(lua_State *L)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected