| 142 | } |
| 143 | |
| 144 | int inet_optfamily(lua_State* L, int narg, const char* def) |
| 145 | { |
| 146 | static const char* optname[] = { "unspec", "inet", "inet6", NULL }; |
| 147 | static int optvalue[] = { AF_UNSPEC, AF_INET, AF_INET6, 0 }; |
| 148 | |
| 149 | return optvalue[luaL_checkoption(L, narg, def, optname)]; |
| 150 | } |
| 151 | |
| 152 | int inet_optsocktype(lua_State* L, int narg, const char* def) |
| 153 | { |
no test coverage detected