| 771 | } |
| 772 | |
| 773 | static int |
| 774 | ts_lua_http_get_id(lua_State *L) |
| 775 | { |
| 776 | ts_lua_http_ctx *http_ctx; |
| 777 | |
| 778 | GET_HTTP_CONTEXT(http_ctx, L); |
| 779 | |
| 780 | uint64_t id = TSHttpTxnIdGet(http_ctx->txnp); |
| 781 | lua_pushnumber(L, id); |
| 782 | |
| 783 | return 1; |
| 784 | } |
| 785 | |
| 786 | static int |
| 787 | ts_lua_http_get_ssn_id(lua_State *L) |
nothing calls this directly
no test coverage detected