| 888 | } |
| 889 | |
| 890 | void |
| 891 | ts_lua_set_http_intercept_ctx(lua_State *L, ts_lua_http_intercept_ctx *ictx) |
| 892 | { |
| 893 | lua_pushliteral(L, "__ts_http_intercept_ctx"); |
| 894 | lua_pushlightuserdata(L, ictx); |
| 895 | lua_rawset(L, LUA_GLOBALSINDEX); |
| 896 | } |
| 897 | |
| 898 | ts_lua_http_intercept_ctx * |
| 899 | ts_lua_get_http_intercept_ctx(lua_State *L) |
no outgoing calls
no test coverage detected