| 784 | } |
| 785 | |
| 786 | static int |
| 787 | ts_lua_http_get_ssn_id(lua_State *L) |
| 788 | { |
| 789 | ts_lua_http_ctx *http_ctx; |
| 790 | |
| 791 | GET_HTTP_CONTEXT(http_ctx, L); |
| 792 | |
| 793 | int64_t id = TSHttpSsnIdGet(TSHttpTxnSsnGet(http_ctx->txnp)); |
| 794 | lua_pushnumber(L, id); |
| 795 | |
| 796 | return 1; |
| 797 | } |
| 798 | |
| 799 | static int |
| 800 | ts_lua_http_is_internal_request(lua_State *L) |
nothing calls this directly
no test coverage detected