Skip to content

Commit

Permalink
refactor(core): Replace check for SO_BINDTODEVICE support with platfo…
Browse files Browse the repository at this point in the history
…rm independent version
  • Loading branch information
leso-kn committed Oct 27, 2023
1 parent 0bc8c56 commit 708e50f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/options.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ int opt_meth_getoption(lua_State *L, p_opt opt, p_socket ps)
/* binds socket to network interface */
int opt_set_bindtodevice(lua_State *L, p_socket ps)
{
#if defined(__APPLE__) || defined(__WIN32__) || defined(_MSC_VER)
#ifndef SO_BINDTODEVICE
return luaL_error(L, "SO_BINDTODEVICE is not supported on this operating system");
#else
const char *dev = luaL_checkstring(L, 3);
Expand All @@ -68,7 +68,7 @@ int opt_set_bindtodevice(lua_State *L, p_socket ps)

int opt_get_bindtodevice(lua_State *L, p_socket ps)
{
#if defined(__APPLE__) || defined(__WIN32__) || defined(_MSC_VER)
#ifndef SO_BINDTODEVICE
return luaL_error(L, "SO_BINDTODEVICE is not supported on this operating system");
#else
char dev[IFNAMSIZ];
Expand Down

0 comments on commit 708e50f

Please sign in to comment.