| 862 | } |
| 863 | |
| 864 | static int |
| 865 | ts_lua_http_server_transaction_count(lua_State *L) |
| 866 | { |
| 867 | ts_lua_http_ctx *http_ctx; |
| 868 | |
| 869 | GET_HTTP_CONTEXT(http_ctx, L); |
| 870 | |
| 871 | int n = TSHttpTxnServerSsnTransactionCount(http_ctx->txnp); |
| 872 | lua_pushnumber(L, n); |
| 873 | |
| 874 | return 1; |
| 875 | } |
| 876 | |
| 877 | static int |
| 878 | ts_lua_http_redirect_url_set(lua_State *L) |
nothing calls this directly
no test coverage detected