#pragma once #include struct connection { int fd; int ref; lua_State * L; int push; }; struct connection * connection_new(const int); void connection_free(struct connection *);