| 419 | } |
| 420 | |
| 421 | static int global_create6(lua_State *L) { |
| 422 | return tcp_create(L, AF_INET6); |
| 423 | } |
| 424 | |
| 425 | static int global_connect(lua_State *L) { |
| 426 | const char *remoteaddr = luaL_checkstring(L, 1); |
nothing calls this directly
no test coverage detected