mirror of
https://github.com/lunarmodules/luasocket.git
synced 2025-07-15 13:29:47 +02:00
Compare commits
1 Commits
a9a3f10e84
...
dffc7e88c5
Author | SHA1 | Date | |
---|---|---|---|
dffc7e88c5 |
@ -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)
|
||||
#ifdef __APPLE__
|
||||
return luaL_error(L, "SO_BINDTODEVICE is not supported on this operating system");
|
||||
#else
|
||||
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)
|
||||
{
|
||||
#if defined(__APPLE__) || defined(__WIN32__) || defined(_MSC_VER)
|
||||
#ifdef __APPLE__
|
||||
return luaL_error(L, "SO_BINDTODEVICE is not supported on this operating system");
|
||||
#else
|
||||
char dev[IFNAMSIZ];
|
||||
|
Reference in New Issue
Block a user