Compare commits

..

2 Commits

Author SHA1 Message Date
Miku AuahDark
a9a3f10e84
Merge b07152bffc5e263619e9152bdcec49518223a229 into 0bc8c56043e9fee5403516c62618b7d3acc5508a 2023-10-27 17:18:11 +02:00
leso-kn
0bc8c56043
fix(core): Disable SO_BINDTODEVICE on windows
Co-authored-by: Sewbacca <sebastian.kalus@kolabnow.com>
2023-10-27 09:59:26 +03:00

View File

@ -58,7 +58,7 @@ int opt_meth_getoption(lua_State *L, p_opt opt, p_socket ps)
/* binds socket to network interface */ /* binds socket to network interface */
int opt_set_bindtodevice(lua_State *L, p_socket ps) int opt_set_bindtodevice(lua_State *L, p_socket ps)
{ {
#ifdef __APPLE__ #if defined(__APPLE__) || defined(__WIN32__) || defined(_MSC_VER)
return luaL_error(L, "SO_BINDTODEVICE is not supported on this operating system"); return luaL_error(L, "SO_BINDTODEVICE is not supported on this operating system");
#else #else
const char *dev = luaL_checkstring(L, 3); const char *dev = luaL_checkstring(L, 3);
@ -68,7 +68,7 @@ int opt_set_bindtodevice(lua_State *L, p_socket ps)
int opt_get_bindtodevice(lua_State *L, p_socket ps) int opt_get_bindtodevice(lua_State *L, p_socket ps)
{ {
#ifdef __APPLE__ #if defined(__APPLE__) || defined(__WIN32__) || defined(_MSC_VER)
return luaL_error(L, "SO_BINDTODEVICE is not supported on this operating system"); return luaL_error(L, "SO_BINDTODEVICE is not supported on this operating system");
#else #else
char dev[IFNAMSIZ]; char dev[IFNAMSIZ];