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