| 941 | |
| 942 | static int db_emit_int(Lua); |
| 943 | static int dbconsumer_emit(Lua L) |
| 944 | { |
| 945 | dbconsumer_t *q = luaL_checkudata(L, 1, dbtypes.dbconsumer); |
| 946 | lua_remove(L, 1); |
| 947 | |
| 948 | ping(L); |
| 949 | int rc = db_emit_int(L); |
| 950 | pong(L, q); |
| 951 | return rc; |
| 952 | } |
| 953 | |
| 954 | static int dbconsumer_emit_timeout(Lua L) |
| 955 | { |
nothing calls this directly
no test coverage detected