| 41 | } |
| 42 | |
| 43 | void |
| 44 | ts_lua_create_context_table(lua_State *L) |
| 45 | { |
| 46 | lua_pushlightuserdata(L, &ts_http_context_key); |
| 47 | lua_newtable(L); |
| 48 | lua_rawset(L, LUA_GLOBALSINDEX); |
| 49 | } |
| 50 | |
| 51 | static int |
| 52 | ts_lua_context_get(lua_State *L) |
no outgoing calls
no test coverage detected